Python基本数据类型之字符串str
作者:小菠萝测试笔记 时间:2021-06-03 22:47:31
字符串的表示方式
单引号 ' '
双引号 " "
多引号 """ """" 、 ''' '''
print("hello world")
print('hello world')
print("""hello world""")
# 输出结果
hello world
hello world
hello world
为什么需要单引号,又需要双引号
因为可以在单引号中包含双引号,或者在双引号中包含单引号
# 单双引号
print("hello 'poloyy' world")
print('this is my name "poloyy"')
# 输出结果
hello 'poloyy' world
this is my name "poloyy"
多行字符串
正常情况下,单引号和双引号的字符串是不支持直接在符号间换行输入的,如果有需要可以用多引号哦!
# 多行字符串
print("""
hello
world
""")
print("""
this
is
my
name
poloyy
""")
# 输出结果
hello
world
this
is
my
name
poloyy
转义符
在字符前加 \ 就行
常见的有
\n:换行
\t:缩进
\r:回车
栗子
比如在字符串双引号间还有一个双引号,就需要用转义符
# 转义符
print("hello \"poloyy\" world")
print('my name is \'poloyy\'')
# 输出结果
hello "poloyy" world
my name is 'poloyy'
假设 \ 只想当普通字符处理呢?
print("反斜杠 \\ 是什么")
print("换行符是什么 \\n")
# 输出结果
反斜杠 \ 是什么
换行符是什么 \n
window 路径的栗子
print("c:\nothing\rtype")
print("c:\\nothing\\rtype")
# 输出结果
c:\nothing\
c:
type
c:\nothing\rtype
更简洁的解决方法
用转义符会导致可读性、维护性变差,Python 提供了一个更好的解决方法:在字符串前加r
print(r"c:\nothing\rtype")
# 输出结果
c:\nothing\rtype
python3的url编码和解码,自定义gbk、utf-8的例子 https://www.jb51.net/article/168181.htm
字符串运算:下标和切片
获取字符串中某个字符
字符串是一个序列,所以可以通过下标来获取某个字符
# 获取字符串某个字符
str = "hello world"
print(str[0])
print(str[1])
print(str[6])
print(str[-1])
print(str[-5])
# 输出结果
h
e
w
d
l
如果是负数,那么是倒数,比如 -1 就是倒数第一个元素,-5 就是倒数第五个元素
获取字符串中一段字符
Python 中,可以直接通过切片的方式取一段字符
切片的语法格式
str[start : end : step]
start:闭区间,包含该下标的字符,第一个字符是 0
end:开区间,不包含该下标的字符
step:步长
栗子
print("hello world'[:] ", 'hello world'[:]) # 取全部字符
print("hello world'[0:] ", 'hello world'[0:]) # 取全部字符
print("hello world'[6:] ", 'hello world'[6:]) # 取第 7 个字符到最后一个字符
print("hello world'[-5:] ", 'hello world'[-5:]) # 取倒数第 5 个字符到最后一个字符
print("hello world'[0:5] ", 'hello world'[0:5]) # 取第 1 个字符到第 5 个字符
print("hello world'[0:-5] ", 'hello world'[0:-5]) # 取第 1 个字符直到倒数第 6 个字符
print("hello world'[6:10] ", 'hello world'[6:10]) # 取第 7 个字符到第 10 个字符
print("hello world'[6:-1] ", 'hello world'[6:-1]) # 取第 7 个字符到倒数第 2 个字符
print("hello world'[-5:-1] ", 'hello world'[-5:-1]) # 取倒数第 5 个字符到倒数第 2 个字符
print("hello world'[::-1] ", 'hello world'[::-1]) # 倒序取所有字符
print("hello world'[::2] ", 'hello world'[::2]) # 步长=2,每两个字符取一次
print("hello world'[1:7:2] ", 'hello world'[1:7:2]) # 步长=2,取第 2 个字符到第 7 个字符,每两个字符取一次
# 输出结果
hello world'[:] hello world
hello world'[0:] hello world
hello world'[6:] world
hello world'[-5:] world
hello world'[0:5] hello
hello world'[0:-5] hello
hello world'[6:10] worl
hello world'[6:-1] worl
hello world'[-5:-1] worl
hello world'[::-1] dlrow olleh
hello world'[::2] hlowrd
hello world'[1:7:2] el
字符串的函数
Python 提供了很多内置的字符串函数,具体可看
https://www.jb51.net/article/169790.htm
来源:https://www.cnblogs.com/poloyy/p/15027131.html
标签:Python,字符串,str
0
投稿
猜你喜欢
初步认识Python中的列表与位运算符
2022-06-28 18:10:51
Navicat配置mysql数据库用户权限问题
2024-01-24 13:06:21
SQL Agent服务无法启动的解决方法
2024-01-21 23:10:21
python使用wxpy实现微信消息防撤回脚本
2023-08-22 21:21:58
Python中.py程序在CMD控制台以指定虚拟环境运行
2021-08-31 14:49:55
Python中Collection的使用小技巧
2022-04-14 01:42:57
关于python简单的爬虫操作(requests和etree)
2022-01-08 02:17:27
MySQL分区表的正确使用方法
2024-01-29 01:51:26
jquery中获取id值方法小结
2024-04-19 10:19:25
安装MSDE2000提示为了安全起见,要求使用强 SA 密码的解决方法
2024-01-14 08:49:09
Mysql数据库实现多字段过滤的方法
2024-01-16 11:35:48
MySQL数据库改名的详细方法教程
2024-01-18 11:46:27
MySQL两种表存储结构MyISAM和InnoDB的性能比较测试
2024-01-28 02:35:55
使用keras实现非线性回归(两种加激活函数的方式)
2023-07-23 23:33:53
CSS 3入门
2009-04-19 13:00:00
python如何往列表头部和尾部添加元素
2021-12-17 07:05:17
MySQL高并发生成唯一订单号的方法实现
2024-01-28 00:27:38
在python中利用dict转json按输入顺序输出内容方式
2021-10-26 15:17:23
Python错误与异常处理
2022-10-28 01:10:33
Python中的字典与成员运算符初步探究
2023-01-28 09:59:18