Let's assume that I wanna collect n lists as an input. What I used to do was:
l=[]
for i in range(n):
row=map(int,raw_input().split())
l.append(row)
And then I used to access those list by l[0],l[1],...,l[n].
Is there any more elegant way to do this? I mean like creating variables dynamically within the for loop with names like: row1,row2,...,rown ?
las a variable name, as PEP8 warns, it looks too much like1in some fonts