I'm trying to populate a list with a for loop. This is what I have so far:
newlist = []
for x in range(10):
for y in range(10):
newlist.append(y)
and at this point I am stumped. I was hoping the loops would give me a list of 10 lists.