python function returning multiple values how to use them code example
Example: python return array
def my_function():
result = []
#body of the function
return result
def my_function():
result = []
#body of the function
return result