How to create a string using double quotes | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

How to create a string using double quotes

5th Jun 2017, 1:05 PM
aditya pratap singh
aditya pratap singh - avatar
2 Respuestas
+ 4
Many ways: - enclosed by double quotes, you can 'escape' double quotes by prepend an 'anti-slash' character ( \ ) to inform Python that next character is not the closing quote boundary of the string - enclosed by simple quote, you doesn't have to explicit that the doubles quotes are inside the string, because Python wait for a simple quote closing boundary - enclosed by triple double quote, the expected closing boundary is expected to be 3 doubles quotes, so you don't need to 'escape' then, except if it's placed at end (Python will consider the 3 first double quotes), or obviously if you want to set triple double quote inside the string - enclosed by triple simple quote, same as unique simple quotes: it's enough explicit Obviously, in same kind of way, you have to be aware of simple quote inside simple quoted string boundaries ^^
5th Jun 2017, 6:07 PM
visph
visph - avatar
0
print("this is a text \"with double quotes\"")
5th Jun 2017, 3:21 PM
Ángel Daniel
Ángel Daniel - avatar