课程名称:全面系统Python3.8入门+进阶(程序员必备第二语言)
课程章节: 3-9 多行字符串
多行字符串
主讲老师:7七月
课程内容:
今天学习的内容包括:
多行字符串
课程收获:
多行字符串-三引号
'hello world,hello world,hello world,hello world,hello world,hello world,'
python 每行最大宽度79,建议超过79进行换行。
'''
hello world
hello world
hello world
hello world
'''
用三个引号,
输出:
'\nhello world\nhello world\nhello world\n'
同样可以使用三个“,他们的效果是一样的。
\n在转义字符里的含义是,回车
tab键,也是一个字符的存在。
输入:"""hello world\nhello world\nhello world"""
输出:hello world\nhello world\nhello world
在IDLE中输入\n他不会把他被识别出来。可使用函数print
print("""hello world\nhello world\nhello world""")
hello world
hello world
hello world
不止三引号才能有换行效果,使用单引号也可以实现同样效果。
样式:
"""hello world
hello world"""
out:
'hello world\nhello world'
单引号双引号换行方式:
in:
'hello\
world'
out:
'helloworld'