How to return more than one variable from a function in Python???
feedback
|
|
You separate the values you want to return by commas:
The commas indicate it's a tuple, so you could wrap your values by parentheses:
Then when you call the function you a) save all values to one variable as a tuple, or b) separate your variable names by commas
| |||
|
feedback
|
|
Here is also the code to handle the result:
| |||
feedback
|