上一篇
python字符串_Python
- 行业动态
- 2024-06-03
- 1
Python字符串是Python编程语言中的一种数据类型,用于存储和处理文本数据,在Python中,字符串是不可变的,这意味着一旦创建了一个字符串,就不能对其进行修改。
以下是一些常用的Python字符串操作:
1、创建字符串
str1 = 'hello' str2 = "world" str3 = '''This is a multiline string.'''
2、访问字符串中的字符
str1 = 'hello' print(str1[0]) # 输出 'h'
3、字符串切片
str1 = 'hello' print(str1[1:4]) # 输出 'ell'
4、字符串连接
str1 = 'hello' str2 = 'world' print(str1 + str2) # 输出 'helloworld'
5、字符串长度
str1 = 'hello' print(len(str1)) # 输出 5
6、字符串方法
str1 = 'hello' print(str1.upper()) # 输出 'HELLO' print(str1.lower()) # 输出 'hello' print(str1.startswith('he')) # 输出 True print(str1.endswith('lo')) # 输出 True print(str1.find('e')) # 输出 1 print(str1.replace('l', 'r')) # 输出 'herro'
7、字符串格式化
name = 'Tom' age = 20 print('My name is %s and I am %d years old.' % (name, age)) # 输出 'My name is Tom and I am 20 years old.'
以上就是Python字符串的一些基本操作,更多高级的字符串操作可以参考Python官方文档。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/169756.html