from time import sleep sleep(1) print("Multiplation Table of 9:") for i in range(1,11) print(9,"x",i,"=",9 * 1) sleep(1)