字符串含有引号的情况 若字符串中含有单引号,则外层使用双引号 s = "I'm a student" print(s) 若不使用双引号,可以通过\方式 s = 'I\'m a student' print(s) 即通过\进行转义