Skip to content
Closed
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions Python/program-21/multitable.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Multiplication table in Python
# 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)
2 changes: 2 additions & 0 deletions Python/program-21/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Python Program to Display the multiplication Table
This program displays the multiplication table of variable num.
10 changes: 0 additions & 10 deletions Python/program-5/pattern.py

This file was deleted.

11 changes: 0 additions & 11 deletions Python/program-5/pattern1.py

This file was deleted.

4 changes: 0 additions & 4 deletions Python/program-6/pattern2.py

This file was deleted.

8 changes: 0 additions & 8 deletions Python/program-7/pattern3.py

This file was deleted.