In Python, I can define two variables with an array in one line.
>>>[a,b] = [1,2] >>>a 1 >>>b 2
How do I do the
When declaring several variables of the same type, you can do the following:
int a = 1, b = 2, c = 3; //etc.