assign one variable to multiple variable code example
Example 1: assign three variables in python in one line
var1, var2, var3 = 1, 'superman',3.7
Example 2: assign multiple vabies in one line
#Instead Of
a = 1
b = ('Hello')
#You Can Do
a,b = 1,'Hello'