我能以某种方式查看元组内容的类型和大小吗?我希望输出类似于:
(str, list, int)
或任何可能的(仅打印它们很困难,因为有嵌套列表)
x = someSecretTupleFromSomewhereElse
print type(x)
<(type 'tuple')>
我能以某种方式查看元组内容的类型和大小吗?我希望输出类似于:
(str, list, int)
或任何可能的(仅打印它们很困难,因为有嵌套列表)
x = someSecretTupleFromSomewhereElse
print type(x)
<(type 'tuple')>
>>> data = ('ab', [1, 2, 3], 101)
>>> map(type, data)
[<type 'str'>, <type 'list'>, <type 'int'>]
要同时显示长度,您可以这样做,对于不是序列的项目,我将只显示None
.
>>> import collections
>>> [(type(el), len(el) if isinstance(el, collections.Sequence) else None)
for el in data]
[(<type 'str'>, 2), (<type 'list'>, 3), (<type 'int'>, None)]