Apr-12-2019, 06:00 AM
I wrote this simple python program
The output is 0, 1, 2, 3, 4
Why is the output in reverse order?
Thanks
L=[]
for i in range(0,5):
L.append(i)
print(*L, sep = ", ") The output is 0, 1, 2, 3, 4
Why is the output in reverse order?
Thanks
