美文网首页
Python 文本中再使用引号/a string that in

Python 文本中再使用引号/a string that in

作者: 壹刀_文 | 来源:发表于2018-11-04 20:19 被阅读0次

    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 in

          本文链接:https://www.haomeiwen.com/subject/zwsdxqtx.html