+ 1
Why are we using single and double quotes in python?
4 odpowiedzi
+ 2
its preference. there is no technical difference.
+ 1
Quotes are used to designate that the inside value is a string of characters. Like when we are about to ask for some value to the user and all
+ 1
Single or Double quotes are used to declare a text a string. If that is not done, Interpreter will think of it as a some type of command and try to execute it, giving syntax error, causing fault in your program.
0
bhh