+ 1
What's the difference?
What's the difference between these in Python: >>> Print ('Hello') >>> "Hello" >>> 'Hello'
2 Réponses
+ 1
No difference between >>>"Hello" and >>>'Hello'.
But the difference in >>>print('Hello') and >>>'Hello'
print('Hello') prints Hello without quotes.
>>>'Hello' and >>>"Hello" prints Hello with single quotes: 'Hello'
+ 1
Seb TheS, Thanks👍