From 5b3aa4acd910fef5b1aeae7728ddce68ede75f95 Mon Sep 17 00:00:00 2001 From: anupriya09072005-beep Date: Sun, 26 Oct 2025 12:53:42 +0530 Subject: [PATCH] Update Multiplication_Table.py --- python/Multiplication_Table.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/Multiplication_Table.py b/python/Multiplication_Table.py index aadac24..8e3e357 100644 --- a/python/Multiplication_Table.py +++ b/python/Multiplication_Table.py @@ -1,13 +1,13 @@ # check the input whether is it a integer or not try: # take input for the calculation value - num = int(input("Eneter Number to multiplay : ")) + num = int(input("Enter Number to multiplay : ")) # check the input for range whether is it a integer or not try: # take input for the range - x = int(input("Eneter range : ")) + x = int(input("Enter range : ")) # loop for change values for i in range(1,x+1): @@ -22,3 +22,4 @@ # if input for calculation value is not a integer then print error on here except: print("Input Type Error!") +