最新回答 / yaoqz
for x in [ 1,2,3,4,5,6,7,8,9 ]: for y in [0,1,2,3,4,5,6,7,8,9 ]: if x<y: print x*10+yprint多加一个tab键
2020-05-03
最新回答 / 慕先生9411764
可以,因为list是可迭代的,tuple中如果存在的dict也是可以新加入元素或删除元素的
t = ("a", "b", ["x", "y"]) print(t[2]) t[2].append("z") print(t) ==> ('a', 'b', ['x', 'y', 'z']) t[2].pop() print(t) ==> ('a', 'b', ['x', 'y'])
2020-04-30