+ 1
Does it matter if u use " or ' in a normal string?Whats the difference and if so when should i use which?
4 Answers
+ 2
Actually,
(âThis is Mr.bean's penâ) will work just fine. You just need to eacape the apostrophe
print (âThis is Mr. Bean\âs penâ)
+ 1
Ok so it doesn't matter only 1 exception good ty
+ 1
Just like flora said but the single qoute would be included in the output. Probably a typo.
If you want to include the same type of qoutation marks inside the string you can use the escape character \ before the qoutation. :)
+ 1
Ohh ye that even quicker