Computer Science, asked by satendr1975, 6 months ago

how do we store string variables in python
a.(string)
b."string"
c.[string]
d.{string} of​

Answers

Answered by shubhambhosale123
0

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)

Similar questions