Why python doesn't raise an error when I try do this, instead it print Nothing.
empty = []
for i in empty:
for y in i:
print(y)
Is that python stop iterate it the first level or it just iterates over and print None?
I found this when trying to create a infinite loop but it stop when list become empty