0
Difference ' with " in Python
Hello, what is the difference between the two, which one should we use ?! Which is better to use? ' , "
3 Réponses
+ 6
Nothing, you can use whatever you want
print('Amirreza')
print("Karimi")
+ 1
print(type('hello'))
print(type("hello"))
Output:
<class 'str'>
<class 'str'>
They are the same.