字符串的基本使用 # 定义一个字符串 str1, 字符串的内容为 "hello world and wanhe and good girl and Python" # 在字符串str1中查找 字符串 and 的下标 # 在字符串str1中查找字符串 'good'的下标 # 将字符串str1中的 and 替换为 or # 将字符串 str1 按照 空白字符进行切割,保存到变量 list1 中 # 使用 _*_ 将 list1中的字符串进行连接 # 使用 逗号 将 list1中的字符串进行连接 #、计算字符串 "9*7+12-5" 的计算结果
时间: 2024-04-10 09:26:58 浏览: 92
字符串的基本操作
字符串的基本使用如下:
```python
# 定义一个字符串 str1, 字符串的内容为 "hello world and wanhe and good girl and Python"
str1 = "hello world and wanhe and good girl and Python"
# 在字符串str1中查找 字符串 and 的下标
index1 = str1.find("and")
print("字符串 'and' 的下标为:", index1)
# 在字符串str1中查找字符串 'good'的下标
index2 = str1.find("good")
print("字符串 'good' 的下标为:", index2)
# 将字符串str1中的 and 替换为 or
str2 = str1.replace("and", "or")
print("替换后的字符串为:", str2)
# 将字符串 str1 按照 空白字符进行切割,保存到变量 list1 中
list1 = str1.split()
print("切割后的字符串列表为:", list1)
# 使用 _*_ 将 list1中的字符串进行连接
str3 = "_*_".join(list1)
print("使用 _*_ 连接后的字符串为:", str3)
# 使用 逗号 将 list1中的字符串进行连接
str4 = ",".join(list1)
print("使用逗号连接后的字符串为:", str4)
# 计算字符串 "9*7+12-5" 的计算结果
result = eval("9*7+12-5")
print("计算结果为:", result)
```
输出结果为:
```
字符串 'and' 的下标为: 12
字符串 'good' 的下标为: 26
替换后的字符串为: hello world or wanhe or good girl or Python
切割后的字符串列表为: ['hello', 'world', 'and', 'wanhe', 'and', 'good', 'girl', 'and', 'Python']
使用 _*_ 连接后的字符串为: hello_*_world_*_and_*_wanhe_*_and_*_good_*_girl_*_and_*_Python
使用逗号连接后的字符串为: hello,world,and,wanhe,and,good,girl,and,Python
计算结果为: 70
```
希望对你有帮助!
阅读全文