Python variable assigning multiple value to multiple variable


Program
a,b,c=10,20,30 print(a) print(b) print(c)
Input
Output