python 三引号

文章目录

三引号字符串会原样保留换行和空格

"""""" 是空字符串

python 复制代码
s = """"""
print(s)
print(repr(s)) # 输出: ''

三引号会保留换行。

开头3引号不紧跟内容会多一个换行。内容结束回车后在写3引号,也会多一个换行


python 复制代码
s = """
hello
world
"""
print(s)
print("***************")
print(repr(s))

如果不想要开头的换行,可以这样写:""" \ 后面的反斜杠可以去掉三引号后的第一个换行.或者紧跟内容

python 复制代码
s = """hello
world
"""
print(repr(s))
# 结果:
"""
hello
world

*******
'hello\nworld\n'
"""

或者这样:

python 复制代码
s = """\
hello
world
"""
print(s)
print("*******")
print(repr(s))
# 结果:
"""
hello
world

*******
'hello\nworld\n'
"""

如果不像要结尾的换行,可以结尾的三引号紧跟内容

python 复制代码
s = """
hello
world"""
print(s)
print("*******")
print(repr(s))
# 结果:
"""

hello
world
*******
'\nhello\nworld'
"""

结尾有换行是因为,结尾打了回车

第一个\n:是jkl这一行结束

第一个\n:是空白行结束

python 复制代码
s = """
abc
def
"""
print(s)
print("****")
print(repr(s))
print("----------------------")
ss = """
ghi
jkl

"""
print(ss)
print("@@@@@@@@@@")
print(repr(ss))

三引号会保留缩进空格

python 复制代码
def demo():
    s = """
    hello
    world
    """
    print(s)
    print("*****")
    print(repr(s))

demo()
# 结果:
"""

    hello
    world
    
*****
'\n    hello\n    world\n    '
"""

想让内容顶格,有三种常见写法

写法一:内容真的顶格写.但是在函数里面,这样写不太好看
python 复制代码
s = """hello
world"""
print(s)
print("********")
print(repr(s))

函数里面这么写不好看

python 复制代码
def demo():
    s = """hello
world"""
    print(s)
    print("*****")
    print(repr(s))
demo()
写法二:用 textwrap.dedent() 去掉公共缩进
python 复制代码
import textwrap

def demo():
    s = textwrap.dedent("""
        hello(缩进8个)
        world(缩进8个)
            ni(缩进12个)
        hao(缩进8个)
                ya(缩进16个)
    """)
    print(s)
    print("******")
    print(repr(s))
demo()
写法三:用 .strip() 去掉首尾空行。.strip() 只去掉首尾空白,不会去掉每一行前面的缩进
python 复制代码
s = """
hello
world
""".strip()
print(s)
print("******")
print(repr(s))

.strip() 只去掉首尾空白,不会去掉每一行前面的缩进

python 复制代码
s = """
    hello
    world
""".strip()
print(s)
print("******")
print(repr(s))


总结 推荐用textwrap去掉公共缩进,用strip去掉首尾空行、首尾空格
python 复制代码
import textwrap
def demo():
    s = textwrap.dedent("""
        hello(缩进8个)
        world(缩进8个)
            ni(缩进12个)
        hao(缩进8个)
                ya(缩进16个)
    """).strip()
    print(s)
    print("******")
    print(repr(s))

demo()
相关推荐
传奇开心果编程3 分钟前
【Rust入门知识点学与练】第17课:闭包 Closures
开发语言·学习·rust
有什么事18 分钟前
把安卓搬上云端:云手机系统改造与内核优化拆解
android·智能手机
广州灵眸科技有限公司32 分钟前
从手动三步到上电即连:4G模组systemd开机自连方案
linux·运维·服务器·开发语言·网络·人工智能·php
今夜有雨.36 分钟前
C# 学习文档(零基础入门)
开发语言·学习·c#
方白羽1 小时前
性能分析:Android Studio Profiler
android·性能优化·app
没文化的阿浩1 小时前
【MySQL】用户管理
android·mysql·adb
触底反弹1 小时前
面试被问到 Text2SQL,我用 DeepSeek 自己实现了一个
python·sqlite
2601_962295581 小时前
python+selenium实现自动化测试
自动化测试·python·selenium·学习心得·web端测试
软件黑马王子1 小时前
14.事件中心:主要作用和原理
开发语言·前端框架·c#