def setup():
multiplication_table(12)
def multiplication_table(numbers):
n=1
print("** Multiplication table of " ,numbers, "**")
while(n<=12):
result=numbers*n
print(numbers, "X" ,n, "=" ,result)
n=n+1
setup()
No comments:
Post a Comment