Python Forum
Need help with 'return' in python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Need help with 'return' in python
#1
Like i say, I need help in python please.
Reply
#2
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.
Reply
#3
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
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020