问题:
编写一个遍历的循环:
['spam!', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]]
并打印每个元素的长度。
我已经尝试过作为我的解决方案:
list = ['spam!', 1,['Brie', 'Roquefort', 'Pol le Veq'], [1,2,3]]
element = 0
for i in list:
print len(list[element])
element += 1
但它收到此错误:TypeError: object of type 'int' has no len()