字符串处理函数(如 strip()、replace() 等)来清理数据或者确保传入的数据类型正确。请举一些代码例子
时间: 2024-01-22 12:19:08 浏览: 71
以下是一些使用字符串处理函数的代码示例:
1. 使用 strip() 函数去除字符串开头和结尾的空格:
```
input_str = " Hello, World! "
cleaned_str = input_str.strip()
print(cleaned_str) # Output: "Hello, World!"
```
2. 使用 replace() 函数替换字符串中的特定字符:
```
input_str = "Hello, World! This is a test."
cleaned_str = input_str.replace("World", "Universe")
print(cleaned_str) # Output: "Hello, Universe! This is a test."
```
3. 使用 isdigit() 函数检查字符串是否只包含数字:
```
input_str = "12345"
if input_str.isdigit():
print("Input is a valid number.")
else:
print("Input is not a valid number.")
```
4. 使用 split() 函数将字符串按照特定分隔符分割成列表:
```
input_str = "apple,banana,orange"
fruit_list = input_str.split(",")
print(fruit_list) # Output: ["apple", "banana", "orange"]
```
阅读全文