【说站】python序列操作的整理
2024-12-17
4
python序列操作的整理
字符串也是一种序列类型。
1、转义字符:在某些字符之前添加\,可以表达特殊的含义,例如:\t代表缩进。
>>> string = 'Hello\nMy\tfriend' >>> print(string) # Hello # My friend
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学习指路:python基础教程
推荐操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:1天前赞一波!1
相关文章
- 【说站】python输入成绩求平均分
- 【说站】python温度转换代码
- 【说站】python怎么将整数反转输出
- 【说站】python可迭代对象的本质探究
- 【说站】python迭代器的应用场景
- 【说站】python如何创建GUI程序
- 【说站】python数据变换如何实现
- 【说站】python字符串中有哪些方法
- 【说站】python格式字符串是什么
- 【说站】python默认索引是什么
- 【说站】python列表添加和删除的方法
- 【说站】python列表的创建和存放
- 【说站】python列表中sort()参数的使用
- 【说站】python字符串方法format()如何使用
- 【说站】python列表操作符有哪些
- 【说站】python mktime()如何计算时间
- 【说站】python搜索模块如何查询
- 【说站】python如何定义索引模块类
- 【说站】python数据模块类如何定义
- 【说站】python zip函数的使用注意
文章评论
评论问答