python function return more than one value code example
Example: return more than one value python
def func(a, b):
return a,b #Returns values a and b as a tuple
def func(a, b):
return a,b #Returns values a and b as a tuple