帮我写一段python代码,定义一个函数,将带有逗号的字符串作为整体以及其他任意字符串转为逗号隔开的tuple
时间: 2024-05-01 09:18:50 浏览: 56
PHP 将逗号、空格、回车分隔的字符串转换为数组的函数
好的,以下是您要求的Python代码:
```python
def string_to_tuple(input_str):
# 将逗号隔开的字符串转为tuple
return tuple(input_str.split(","))
# 示例调用
input_str = "apple,banana,orange"
result_tuple = string_to_tuple(input_str)
print(result_tuple)
```
当然,如果您需要将多个字符串一起转换为tuple,可以将函数改为如下形式:
```python
def strings_to_tuple(*args):
# 将多个字符串转为tuple
return tuple(args)
# 示例调用
input_str1 = "apple,banana,orange"
input_str2 = "cat,dog"
result_tuple = strings_to_tuple(input_str1, input_str2, "hello")
print(result_tuple)
```
希望这个函数能够满足您的需求!
阅读全文