Python编写程序,判断用户传入对象(字符串、列表、元祖)长度是否大于4
时间: 2024-01-14 16:04:26 浏览: 130
Python列表、元祖、字典、集合学习笔记文档(附Python源码)
可以使用Python中的`len`函数来判断字符串、列表、元组等对象的长度是否大于4。以下是一个示例代码:
```python
def check_length(obj):
if len(obj) > 4:
print("Length of object is greater than 4")
else:
print("Length of object is not greater than 4")
# 测试字符串
s = "Hello"
check_length(s)
# 测试列表
lst = [1, 2, 3, 4]
check_length(lst)
# 测试元组
tup = (1, 2, 3)
check_length(tup)
```
在这个代码中,定义了一个`check_length`函数,接受一个参数`obj`,并使用`len`函数判断其长度是否大于4。根据判断结果,输出相应的提示信息。
在测试部分,分别传入一个字符串、一个长度为4的列表和一个长度为3的元组来测试`check_length`函数。
阅读全文