What will this code output to the screen?
for i in range(5): print(i) else: print("Done!")
0 1 2 3 4 5 Done!
1 2 3 4 5 Done!
You will get a syntax error.
0 1 2 3 4 Done!