【python基础学习】六、字符串

本文详细介绍了Python中字符串的基本操作,包括使用双引号或单引号定义字符串,字符串的索引与长度,字符计数,子字符串定位,常用方法如isspace()用于判断空白字符,isnumeric()检查数字字符,以及查找与替换功能。此外,还展示了字符串的拆分、合并和切片操作,帮助读者深入理解Python字符串处理。
摘要由CSDN通过智能技术生成

定义

# 使用双引号定义
# 也可使用单引号
str = "hi"
str_1 = 'py'
str_2 = '我的"xxx"' 

索引

  • 从0开始
string = "nihaoya"
for i in string:
    print(i)

# 字符串长度
print(len(string))

# 统计某字符出现次数
print(string.count("a")) # 2
print(string.count("abc")) # 0

# 子字符串出现的位置
# 子字符串不存在,报错
print(string.index("a")) # 3

常用方法

菜鸟教程

转义字符

\反斜杠符号
单引号
"双引号
\n换行
\t横向制表符
\r回车

isspace()


# 判断空白字符
space_str = "   a"
print(space_str.isspace())  # False

space_str = "    "
print(space_str.isspace())  # True

space_str = "    \t\n\r"
print(space_str.isspace())  # True

isnumeric()

在这里插入图片描述

查找和替换

在这里插入图片描述

hello_str ="hello a"

# 是否以指定的字符串开始?
print(hello_str.startswith("Hello")) # False
print(hello_str.startswith("hello")) # True

# 是否以指定字字符串结束
print(hello_str.endswith("b")) # False

# 查找指定字符串
# index
# 不存在会报错
print(hello_str.index("llo")) # 2
# print(hello_str.index("aaa")) # 报错

# find
# 字符串不存在会返回-1
print(hello_str.find("aaa")) # -1

# 替换字符串
# repace方法执行完成后,会返回一个新的字符串
# (old,new)
print(hello_str.replace("a","b"))

poem =[ "登鹳雀楼",
        "王之涣",
        "白日依山尽",
        "黄河入海流",
        "欲穷千里目",
        "更上一层楼"]

for i in poem:
    print("|%s|"%i.center(10))

for i in poem:
    print("|%s|" % i.ljust(10))

判断空白字符


# 判断空白字符
space_str = "   a"
print(space_str.isspace())  # False

space_str = "    "
print(space_str.isspace())  # True

space_str = "    \t\n\r"
print(space_str.isspace())  # True

拆分、合并

poem = "\t\n登鹳雀楼  王之涣白日依山尽\t\n黄河入海流欲穷千里目更上一层楼"

print(poem)

#  拆分字符串
poem_list =poem.split()
print(poem_list)    # ['登鹳雀楼', '王之涣白日依山尽', '黄河入海流欲穷千里目更上一层楼']

# 合并字符串
result = "".join(poem_list) # -> str
print(result)   # 登鹳雀楼王之涣白日依山尽黄河入海流欲穷千里目更上一层楼

切片

  • 适用于:字符串、列表list、元组tuple
  • 索引值:限定范围
  • 列表和元组都是有序的集合
  • 字典是一个无需的集合,是使用键值对保存数据
  • str[开始索引:结束索引:步进值]

在这里插入图片描述

# 2345
str = "0123456789"
print(str[2:6])     # 2345
print(str[2:5])     # 234

# 23456789
print(str[2:])

# 012345
print(str[0:6])
print(str[:6])

# 0123456789
print(str[:])

# 每隔一个截取一个
# 02468
print(str[::2]) # 起始、结束索引都省略不写,步进2

# 从1开始,每隔一个截取一个
# 13579
print(str[1::2])

# 2345678
print(str[-1])  # 9
print(str[2:-1])

# 截取末尾两个字符
print(str[-2:-1])   # 8
print(str[-2:])     #89

# 步进值-1 表示相反方向步进
print(str[0::-1])   # 0

# 通过切片实现逆序
print(str[-1::-1])  # 9876543210
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值