вернуть более одного значения Python

def func(a, b):
  return a,b #Returns values a and b as a tuple
Metyore