首先所有的引号要成对出现,就像穿鞋要成双
一、单引号和双引号
1.单引号和双引号单独出现时,二者输出结果没有区别
>>>str1="the good wife"
>>>str2='the good wife'
>>>print(str1)
the good wife
>>>print(str2)
the good wife
2.当单引号和双引号同时出现时,最外层引号包含的内容则为字符串
# 输出字符串中的单引号
>>>str3="he is a 'cute' boy"
>>>print(str3)
he is a 'cute' boy
# 输出字符串中的双引号
>>>str4='he is a "cute" boy'
>>>print(str4)
he is a "cute" boy
# 不可出现两对相同的引号,下面两个程序将会报错
>>>str5='he is a 'cute' boy'
>>>str6="he is a "cute" boy"
当然,也有其他的办法使用相同的引号呈现同样的效果,那就是加入转义符\
# 在引号前加入转义符\
>>>str5 = 'he is a \'cute\' boy.&