0
Can u give brief idea about strings double quotes?
" " (what can I write in this am not getting)
3 Antworten
+ 2
" is the same as '. But inside "" you can use ' without \ and vice versa. For example:
"I'm Timur. I'm happy." == 'I\'m Timur. I\'m happy.'
0
I would prefer ", for in future parts you would use ' in a string. Any suggestions?
- 1
also, if you write without "" or '', it means that you wanna print a value of a variable
for example :
>>> a = 3
>>> print(a)
3