# Chapter 18 example: multiplication table with for loop. for i in range(1, 11): print(f"7 * {i} = {7 * i}") # Try changing 7 to another number, or 1, 11 to a different range.