要检查一个对象是列表还是元组,可以使用Python的type()
函数。以下是一个示例代码:
def check_type(obj):
if type(obj) == list:
return "列表"
elif type(obj) == tuple:
return "元组"
else:
return "其他类型"
my_list = [1, 2, 3]
my_tuple = (1, 2, 3)
my_string = "hello"
print(check_type(my_list)) # 输出:列表
print(check_type(my_tuple)) # 输出:元组
print(check_type(my_string)) # 输出:其他类型
在这个示例中,check_type
函数接受一个对象作为参数,然后使用type()
函数检查该对象的类型。如果对象是列表,函数返回"列表";如果对象是元组,函数返回"元组";否则,函数返回"其他类型"。
领取专属 10元无门槛券
手把手带您无忧上云