0
What's the difference between ' " ' and ' print ' ?
3 Antworten
+ 1
Quotation mark alone will not mean anything when programming, you may use it for assigning variables e.g. s = ' something ' , print function is often used to display a visual output to the user.
0
You can define strings with "". print on the other hand is just a function that writes to STDOUT (standard output stream)
- 1
none