Python 文本中再使用引号/a string that in
2018-11-04 本文已影响0人
壹刀_文
Python 定义文本使用 ' ' 或者 " "
如果再其中需要再使用 引号 就会出错 。解决方案是:
print( ‘I call him "My dear." when I was loved with him.')
如果需要同时使用单引号 和 双引号 。解决方案是:
使用反斜杠来转义引号
print( 'I sayed to that girl:" You're so hot.".')