working ;)
This commit is contained in:
parent
aecda058b5
commit
9614de5e76
2 changed files with 74 additions and 39 deletions
10
test.py
Normal file
10
test.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
x = []
|
||||
for _ in range(len([1,2,3,4])):
|
||||
x.append([])
|
||||
for i,a in enumerate([1,2,3,4]):
|
||||
x[i].append(a)
|
||||
|
||||
|
||||
test = [("a",(1)),("b",(2)),("c",(3))]
|
||||
for i, a in enumerate(test):
|
||||
print(a[i])
|
Loading…
Add table
Add a link
Reference in a new issue