gpt4 book ai didi

python - 如何确定Python中的数据类型?

转载 作者:行者123 更新时间:2023-11-28 19:41:13 26 4
gpt4 key购买 nike

收弦('a','元组')

如何确定“x”是元组还是字符串?

最佳答案

if isinstance(x, basestring):
# a string
else:
try: it = iter(x)
except TypeError:
# not an iterable
else:
# iterable (tuple, list, etc)

@Alex Martelli's answer详细描述了为什么在 Python 中使用类型时应该更喜欢上述样式(感谢@Mike Hordecki 提供的链接)。

关于python - 如何确定Python中的数据类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1896261/

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