Tagged Questions
The multiple-variable-return tag has no wiki summary.
4
votes
3answers
2k views
Linux bash: Multiple variable assignment
Does exist in linux bash something similar to the following code in PHP:
list($var1, $var2, $var3) = function_that_returns_a_three_element_array() ;
i.e. you assign in one sentence a corresponding ...
2
votes
3answers
5k views
return more than one value from a function in Python
How to return more than one variable from a function in Python???