例程1:
>>> "Hello,world!"
'Hello,world'
我们发现上述程序,输出为单引号''
括起来,我们程序中是双引号""
,那它们有区别么?哈哈哈, 本质上,没有任何区别。
例程2:
>>>" Let's go!"
"Let's go!"
>>>' "Hello, world!" She said'
' "Hello, world!" She said'
上述的两段代码,都出现同时用到了单引号''
和双引号""
,如果单纯的只使用单引号''
或者双引号""
,编译器都会报错。所以说就会引入转义字符的概念:使用 反斜杠\
对字符串的引号进行转义:
>>> ' Let\'s go!'
"Let's go!"
>>>'\"Hello, world!\" She said '
'"Hello,world" She said'