Computer Science, asked by tripathiutkarsh833, 4 hours ago

21- What are multiple assignment in python?
Give example. ​

Answers

Answered by yadavsantosh0720
0

Explanation:

Multiple Assignment

Python allows you to assign a single value to several variables simultaneously. For example:

Here, an integer object is created with the value 1, and all three variables are assigned to the same memory location. ...

Here, two integer objects with values 1 and 2 are assigned to variables a and b.

Similar questions