Python - Basics and Execution Environment
You want to write a function that prints numbers 1 to 3, each followed by 'Done' on a new line. Which code correctly uses indentation to achieve this?
def print_numbers():
for i in range(1, 4):
print(i)
print('Done')