python set three variables code example
Example 1: assign three variables in python in one line
var1, var2, var3 = 1, 'superman',3.7
Example 2: python set several variables to none
>>> a=1
>>> a
1
>>> a, b, c, d, e, f, g, h, i, j = (None,)*9
>>> type(a)
<class 'NoneType'>