python中的字符串
时间: 2023-10-18 18:04:53 浏览: 133
在 Python 中,字符串是一种序列数据类型,用于表示文本数据。字符串可以使用单引号、双引号或三引号来创建,例如:
```python
str1 = 'Hello, World!'
str2 = "Python is awesome"
str3 = """This is a multi-line string"""
```
Python 中的字符串是不可变的,这意味着一旦创建了一个字符串,就不能更改它的值。但是,可以通过连接、分割和格式化等操作来修改字符串的内容。例如:
```python
# 字符串连接
str4 = str1 + ' ' + str2
print(str4) # 输出:Hello, World! Python is awesome
# 字符串分割
words = str2.split(' ')
print(words) # 输出:['Python', 'is', 'awesome']
# 字符串格式化
name = 'Alice'
age = 20
print("My name is {} and I'm {} years old".format(name, age)) # 输出:My name is Alice and I'm 20 years old
```
阅读全文