The big little idea
A loop repeats instructions. A for loop takes each item in a sequence, one at a time. That means you can do a big job with a small amount of code.
for number in range(1, 4):
print(f"Jump {number}!")
print("Ta-da!")range(1, 4) gives 1, 2, and 3. It stops before 4. Indent every line you want to repeat. A line that is no longer indented runs after the loop finishes.