variable --variable is a container that store the data-- ---variable are used to hold data during execution of the programm example: a=5 a is variable which store 5
#4 Wrtite a python programm that reads two integers and #cheks whether they are multiple or not a=int(input( "Enter the first number:" )) b=int(input( "Enter the second number:" )) if b%a== 0 : print( "multiplied" ,) else : print( "Not multiplied" )
Comments
Post a Comment