Python [and variable assignment]

name = 'changing'

# The "ever-changing" is assigned to the "name" This [variable]

 

>>> name = '一'
>>> name = '二'
>>> print(name)

# When multiple assignment, the variable name will point to the new space

 

Assignment '=' differs from '==' of
assignment: the content right to the left into the
comparison operators: the left and right sides of equal symbols representative of

 

Guess you like

Origin www.cnblogs.com/CH-TNT/p/11222147.html