Answer:
We use Python assignment statements to assign objects to names. The target of an assignment statement is written on the left side of the equal sign (=), and the object on the right can be an arbitrary expression that computes an object. ... Python creates a variable name the first time when they are assigned a value.
Explanation:
An assignment statement gives a value to a variable. For example, x = 5; gives x the value 5.