Python 文本中再使用引号/a string that inclues both single and double quotes

Python 定义文本使用 ' ' 或者 " "
如果再其中需要再使用 引号 就会出错 。解决方案是:

print( ‘I call him "My dear." when I was loved with him.')

如果需要同时使用单引号 和 双引号 。解决方案是:
使用反斜杠来转义引号

print( 'I sayed to that girl:" You're so hot.".')

感谢各位的阅读,如对你有帮助,请点喜欢。

你可能感兴趣的:(Python 文本中再使用引号/a string that inclues both single and double quotes)