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
3 changes: 2 additions & 1 deletion python/Multiplication_Table.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# take input for the calculation value
num = int(input("Eneter Number to multiplay : "))

# check the input for range whether is it a integer or not
# check the input for range whether is it a integer or not(test)
try:

# take input for the range
Expand All @@ -22,3 +22,4 @@
# if input for calculation value is not a integer then print error on here
except:
print("Input Type Error!")