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