#x starts at 1 and goes up to 80 @ intervals of 2 for x in range(1, 80, 2): print(x)
Here is what the above code is Doing:
1. It’s creating a for loop that starts at 1 and goes up to 80.
2. It’s incrementing by 2 each time.
3. It’s printing the value of x each time.