python variables and constants

# Process program executed: execution order from top to bottom (Process-oriented) 

Age = 18 is

Age = "Good"
#del Age
Print ( "Age =", Age)
# variable type See
Print (type (Age))
# View address of the variable
Print (ID (Age))


# num1 = int (iNPUT ( "enter a number"))
# num2 = int (iNPUT ( "Please enter a number"))
#Print ( "num1 num2 = +" , num1 + num2)

Guess you like

Origin www.cnblogs.com/pygo/p/12100531.html