Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

print list of list line by line python

a = [[1, 3, 4], [2, 5, 7]]
for s in a:
    print(*s)
////Output
1 3 4
2 5 7
 
PREVIOUS NEXT
Tagged: #print #list #list #line #line #python
ADD COMMENT
Topic
Name
2+7 =