3 Respuestas
0
May you have doubt between single and double? If yes, then you can use single quotes or double quotes to represent strings, no difference in python.
print is a function used for outputting..
Edit : examples
s = 'str' (is same as "str")
print(s) prints s value
https://www.sololearn.com/learn/Python/2274/?ref=app