+ 1
How to do strings
4 Respostas
+ 2
name = input("Enter your name")
print(name)
name = "mayur"
0
also, Python doesn't care if you use " " or ' ' but once you get to other languages it does matter. better to get in the habit now of using " for strings and ' for chars.