写一个函数,参数tp为元组类型,实现功能:能够输出元组tp中的字符串型(包括数字字符型)元素。 # 测试函数,调用show_str((53,‘1999’,12,1909,’nono’,1834))查看效果
时间: 2024-03-14 15:43:27 浏览: 38
C例子:字符串输出函数
好的,这是您需要的函数:
```python
def show_str(tp):
for item in tp:
if isinstance(item, str):
print(item)
elif isinstance(item, int):
if str(item).isdigit():
print(str(item))
```
您可以使用以下代码进行测试:
```python
tp = (53, '1999', 12, 1909, 'nono', 1834)
show_str(tp)
```
输出结果应该为:
```
1999
nono
```
阅读全文