python str用法
Python中的字符串(str)是一种常见的数据类型,用于存储字符序列。在Python中,字符串是不可更改的。
以下是使用Python str的一些常见用法:
1. 字符串连接
字符串可以通过加号(+)进行连接。例如:
```
str1 = "Hello,"
str2 = "world!"
str3 = str1 + str2
print(str3)
```
输出:
```
Hello,world!
```
2. 字符串分割
可以使用split()方法将字符串按照某个分隔符分割成列表。例如:
```
str = "hello world"
lst = str.split(" ")
print(lst)
```
输出:
```
['hello', 'world']
```
3. 判断字符串是否包含另一个字符串
可以使用in关键字来检查一个字符串是否包含另一个字符串。例如:
```
str1 = "hello world"
str2 = "world"
if str2 in str1:
  print("字符串包含子字符串")
else:
  print("字符串不包含子字符串")
```
输出:
```
字符串包含子字符串
```
4. 替换字符串中的部分内容
可以使用replace()方法替换字符串中的部分内容。例如:
```
str = "hello world"
new_str = place("world", "python")
print(new_str)
```
输出:
```
hello python
```
5. 删除字符串中的空格
可以使用strip()方法删除字符串两端的空格。例如:
```
str = "  hello world  "
new_str = str.strip()
字符串函数strip的作用
print(new_str)
```
输出:
```
hello world
```
6. 将字符串转换为整数
可以使用int()方法将字符串转换为整数。例如:
```
str = "123"
num = int(str)
print(num)
```
输出:
```
123
```
以上是Python str的几个常见用法,还有其他的方法可以在Python上查询。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。