#!/usr/bin/python3 number = 9 for i in range(1, 5): mul_table = number * i print("{} * {} = {}".format(number, i, mul_table))