python培训之序列操作的整理

发布时间:2023-03-01 09:44:34 人气:48 作者:多测师

  python序列操作的整理

  字符串也是一种序列类型。

  1、转义字符:在某些字符之前添加\,可以表达特殊的含义,例如:\t代表缩进。

  >>> string = 'Hello\nMy\tfriend'

  >>> print(string)

  # Hello

  # My friend

python培训之序列操作的整理

  2、原始字符串:在引号前添加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.

  以上就是python序列操作的整理,希望对大家有所帮助。更多Python学习指路:请关注多测师。https://www.e70w.com/xwzx/


返回列表
在线客服
联系方式

热线电话

17727591462

上班时间

周一到周五

二维码
线