标签:style 注释 nbsp 合并 多行 text 输出 单行 code
1 注释
#单行注释 """ 多行注释 多行注释 """ ‘‘‘ 多行注释 多行注释 ‘‘‘
2 转义 \
#转义字符 \ #string第一个“\”会自动加\,print输出会将\与后面的字母合并看成转义字符 string="C:\nython\text" print(string) #方式一 加r string=r"C:\python\text" print(string) #方式二 双斜杠 \\,不方便 string="C:\\python\\text" print(string)
标签:style 注释 nbsp 合并 多行 text 输出 单行 code
原文地址:https://www.cnblogs.com/qianwangxingfu/p/12932530.html