Saved Bookmarks
| 1. |
How do we store string variables in python a.(string)b."string"c.[string]d.{string} of |
| Answer» B."string"Explanation: Assigning a string to a variable is done with the variable name followed by an EQUAL sign and the string:example-STR = "Hello" PRINT(str) | |