for multiplication of a number by 5 Get link Facebook X Pinterest Email Other Apps September 01, 2023 num = input("input the number and we will add it : ")print(int(num)* 5) 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