gpt4 book ai didi

python - 测试变量是列表还是元组

转载 作者:IT老高 更新时间:2023-10-28 12:14:50 27 4
gpt4 key购买 nike

在 python 中,测试变量是否包含列表或元组的最佳方法是什么? (即一个集合)

isinstance() 是否像这里建议的那样邪恶? http://www.canonical.org/~kragen/isinstance/

更新:我想将列表与字符串区分开来的最常见原因是当我有一些无限深的嵌套树/字符串列表列表的数据结构等时,我正在使用递归算法进行探索我需要知道我什么时候点击了“叶子”节点。

最佳答案

if type(x) is list:
print 'a list'
elif type(x) is tuple:
print 'a tuple'
else:
print 'neither a tuple or a list'

关于python - 测试变量是列表还是元组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2184955/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com