Wednesday, June 30, 2021

Multiplication Table in Python

 A simple multiplication table that I wrote using Python programming language I hope you will find my work useful.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website, kindly contact me also at my email address also. Thank you.

My email address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360.





Program Listing

# Multiplication_Table.py
# Jake Rodriguez Pomperada, MAED-IT, MIT
# www.jakerpomperada.com and www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental

a = 1
print("-" * 60)
print("\t\t\t\tMULTIPLICATION TABLE ")
print("-" * 60)
while a < 13:
n = 1
while n <= 12:
print("%4d" % (a * n), end=' ')
n += 1
print()
a += 1
print("-" * 60)

No comments:

Post a Comment