云主机测评网云主机测评网云主机测评网

云主机测评网
www.yunzhuji.net

python字符串_Python

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官方文档。

打赏
版权声明:主机测评不销售、不代购、不提供任何支持,仅分享信息/测评(有时效性),自行辨别,请遵纪守法文明上网。
文章名称:《python字符串_Python》
文章链接:https://www.yunzhuji.net/xunizhuji/195376.html

评论

  • 验证码