单引号,双引号,三引号 的区别以及使用

 

python中单引号和双引号是等效的

字符串过长需要换行时,使用\,如
helloworld\
helloworld
或者是直接使用'''(也可以用来注释),如
'''hello world'''


输出let's go的方法
>>> 'let\'s go'
"let's go"
>>> "let's go"
"let's go"
>>> '''let's go '''
"let's go "
>>> 

 

 

 

posted @ 2019-12-08 22:07  anobscureretreat  阅读(1216)  评论(0编辑  收藏  举报