编写并调用函数,把传过来的列表参数中的每一个元素都用"_"拼接成一个整体,并输出显示。 例如:实参为[1,’computer’,2,’phone’], 调用函数后输出显示为:1_computer_2_phone
时间: 2024-05-11 09:19:15 浏览: 80
ListCombine:编写一个函数,通过交替获取元素来组合两个列表。 例如
可以使用以下代码实现:
```python
def join_with_underscore(lst):
result = '_'.join(str(item) for item in lst)
print(result)
# 测试函数
my_list = [1, 'computer', 2, 'phone']
join_with_underscore(my_list)
```
输出结果为:
```
1_computer_2_phone
```
阅读全文