multiplication by use of for and if Get link Facebook X Pinterest Email Other Apps September 02, 2023 a = int(input("enter the no. for which you want the table : "))print("the multiplication table of :", a)for count in range(1, 999): print(a, 'x', count, '=', a*count) Get link Facebook X Pinterest Email Other Apps Comments
try except error handling September 02, 2023 try : a = int ( input ( "enter your age: " )) print ( a ) except : print ( "some error occured" ) Read more
if and else September 02, 2023 age = int ( input ( "enter you age :" )) if ( age > 17 ): print ( "yes you can drive" ) else : print ( "no you can't" ) Read more
Comments
Post a Comment