随便给我一段python代码
时间: 2024-08-27 13:00:58 浏览: 77
python绘制小猪佩奇py代码_python代码_python_小猪佩奇python_transportation9lf_
当然可以。这是一个简单的Python代码片段,它定义了一个函数并使用了输入参数的多态性:
```python
def print_length(item):
if isinstance(item, str): # 判断是否为字符串
length = len(item)
print(f"The string's length is: {length}")
elif isinstance(item, list): # 判断是否为列表
length = len(item)
print(f"The list's length is: {length}")
else:
print("The input type is not supported.")
# 测试示例
print_length("Hello") # 输出:The string's length is: 5
print_length([1, 2, 3, 4, 5]) # 输出:The list's length is: 5
print_length(123) # 输出:The input type is not supported.
阅读全文