# Homework 18, problem 2: Multiplication table of 7. # # Use a for loop to print: # 7 * 1 = 7 # 7 * 2 = 14 # ... # 7 * 12 = 84 # # Run with: python exercises/18/homework/02-mult-table-7.py # Your code goes here: