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
- python was conceived in 1980 by Guido van Rossum. #version history python 1.0-- 1994 python 2.0--2000 python 3.0--2008 #latest version python 3.10.6--2 August 2022 #Name python python developers aim for it to be fun to use the name python is tribute to the British comedy show monty python
#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