导语:
本文主要介绍了关于python序列操作的整理的相关知识,包括python的序列类型不包括,以及python命令行参数这些编程知识,希望对大家有参考作用。
字符串也是一种序列类型。
1、转义字符:在某些字符之前添加\,可以表达特殊的含义,
例如:\t代表缩进。
>>> string = 'Hello\nMy\tfriend'
>>> print(string)
# Hello
# My friend
2、raw string:在引号前加r,表示不对字符串内容进行转义。
>>> string = r'Hello\nMy\tfriend'
>>> print(string)
# Hello\nMy\tfriend
3、长字符串:用三个引号代替普通引号,表示保留文本的原始格式,适用于长段。
>>> string = '''To see a world in a grain of sand,
And a heaven in a wild flower,
Hold infinity in the palm of your hand,
And eternity in an hour.'''
>>> print(string)
# To see a world in a grain of sand,
# And a heaven in a wild flower,
# Hold infinity in the palm of your hand,
# And eternity in an hour.
推荐操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Python计算三角形面积详细代码演示09/30
- ♥ python中callable如何判断一个类的调用?01/06
- ♥ python中pyquery初始化的方法12/11
- ♥ 可以安装两个python环境吗?11/01
- ♥ 什么是python中的面向对象11/24
- ♥ python支持字符串吗12/06
内容反馈