Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions Python/Multiplication Table.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Hello Friends This is a code which shows the multiplation table of any number just run this code below, it will ask of the number you want to know the table of.
# after then it will show the multiplication table of that following number
# IF YOU WANT TO UPDATE THIS CODE FEEL FREE TO DO IT
# Thnkyou





# Multiplication table (from 1 to 10) in Python

num = 12

# To take input from the user
# num = int(input("Display multiplication table of? "))

# Iterate 10 times from i = 1 to 10
for i in range(1, 11):
print(num, 'x', i, '=', num*i)