Python Forum

Full Version: Need help with 'return' in python
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Like i say, I need help in python please.
Help us to help you, show us what the problem with return is, post a minimal code sample (in python code tags) for the specific part your stuck on, explain what you expect to happen and what is actually happening and any errors received in error tags.
If you want an example and how it works here.
def add(num1, num2):
    return num1 + num2

number = add(1, 1)
print(number)
Output:
2
It return a value from a function as seen above. Another example
import random

def two_random_numbers(minimum, maximum):
    num1 = random.randint(minimum, maximum)
    num2 = random.randint(minimum, maximum)
    return num1, num2

num1, num2 = two_random_numbers(1, 5)
numbers = two_random_numbers(1, 5)
print(num1)
print(num2)
print(numbers)
Output:
3 2 (4, 2)
Hope this helps