for i in range(1,5):
print(i)
a = input("Enter a Number")
If I don't Enter anything into the Input and Rerun the File again In VSCODE Terminal, The For loop iteration is advancing.
However I was expecting it to reset back to its initial value of 1. Why is this happening and How do I fix It ?