Quick actions

cmd+k|ctrl+k

Navigation

Languages

Unit 23.5

Snippet info

Language

Python

Visibility

public

Author

mori

Created

2019-02-11T00:48:27Z

Updated

2019-02-11T00:49:43Z

a = [[10, 20, 30, 40], [50, 60, 70, 80], [90, 100, 110, 120]]

i = 0
while i < len(a):
    j = 0
    while j < len(a[j]):                
        print(a[i][j], end=' ')
        j += 1
    print()
    i+= 1
INFO