学习笔记(09):Python 面试100讲(基于Python3.x)-你真的了解Python字符串吗
程序员文章站
2022-07-14 23:10:31
...
立即学习:https://edu.csdn.net/course/play/26755/340117?utm_source=blogtoedu
如何同时显示单引号和双引号:
print("Let\'s go!")
"""结果:
Let's go! """
让转义符失效的方法:
print(r"Let\'s go!")
print(rper("Let\'s go!"))
print("Let\\'s go!")
"""结果:
Let\'s go!
Let\'s go!
Let\'s go! """
如何保持字符串的原始格式:
print("""
1123
466
903
""")
"""结果:
1123
466
903"""
上一篇: Python学习笔记(3)-字符串
推荐阅读
-
学习笔记(27):Python 面试100讲(基于Python3.x)-Python字符串格式化知多少
-
学习笔记(31):Python 面试100讲(基于Python3.x)-让字符串居中显示
-
学习笔记(09):Python 面试100讲(基于Python3.x)-你真的了解Python字符串吗
-
学习笔记(26):Python 面试100讲(基于Python3.x)-Python字典与JSON字符串如何互转
-
学习笔记(30):Python 面试100讲(基于Python3.x)-让字符串居中显示
-
学习笔记(26):Python 面试100讲(基于Python3.x)-Python字符串格式化知多少
-
学习笔记(18):Python 面试100讲(基于Python3.x)-如何排序一个列表
-
学习笔记(04):Python 面试100讲(基于Python3.x)-绘制谢尔宾斯基三角形