what will be the output of the following python statements a,b,c=1,4,2
Answers
Answered by
0
These values will be assigned to each variable with the above line.
a=1
b=4
c=2
a=1
b=4
c=2
Similar questions