知行编程网知行编程网  2023-01-05 06:30 知行编程网 隐藏边栏  0 
文章评分 0 次,平均分 0.0
导语: 本文主要介绍了关于python序列操作的整理的相关知识,包括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电脑。

本文为原创文章,版权归所有,欢迎分享本文,转载请保留出处!

知行编程网
知行编程网 关注:1    粉丝:1
这个人很懒,什么都没写
扫一扫二维码分享