choice = None
while choice != 0:
print("Hello")
choice = 0
In this circumstance why does the string "Hello" only print once? Shouldn't choice reset to None after the ending of the while loop, thus resulting in an infinite print("Hello")?