python Basics ---> variable

"" "
Variables: data stored in memory
." ""
# Syntax:
 variable name = Object
 example:
name = "zhangwuji"
Print (name)

 Variable: Alias real memory addresses
 see the name EENOW
 an assignment: the right to copy the address of the object to the left of the memory space.

name = "Zhao"
A01 = A02 = "Zhou Zhi"
B01, B02 = "Suda Jiang", "Su Mingyu"
class_name = "1905"

Guess you like

Origin www.cnblogs.com/suheike/p/11111119.html