[[] for i in range(n)] python code example
Example 1: range(n,n) python
# if numbers are same in the range function then,
# the range function outputs empty range
# this is because, there are no integers b/w n and n
for i in range(1,1):
print("runs")
# prints nothing
Example 2: in range python
for i in range(x) #[0;x[
Example 3: for i in range python
for elt in Liste:
print(elt)