Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara Return Value | What is a Function in Python?
Python Functions Tutorial

book
Return Value

Let's create a function walk_the_dog that takes the dog's name dog_name and the time for a walk walk_time as parameters. The function should return a message indicating whether it's time to walk the dog.

def walk_the_dog(dog_name, walk_time):
# Check if the walk time is between 6 and 18 hours
if 6 <= walk_time <= 18:
return f"Time to walk {dog_name}!"
else:
return f"Wait until 6 PM to walk {dog_name}!"

# Function calls with different parameters
message1 = walk_the_dog("Bella", 14)
message2 = walk_the_dog("Charlie", 20)

# Display the results
print(message1)
print(message2)
1234567891011121314
def walk_the_dog(dog_name, walk_time): # Check if the walk time is between 6 and 18 hours if 6 <= walk_time <= 18: return f"Time to walk {dog_name}!" else: return f"Wait until 6 PM to walk {dog_name}!" # Function calls with different parameters message1 = walk_the_dog("Bella", 14) message2 = walk_the_dog("Charlie", 20) # Display the results print(message1) print(message2)
copy
  • The if 6 <= walk_time <= 18: condition checks if the walk time (walk_time) is between 6 and 18 hours (inclusive).

  • If this condition is true (meaning the walk time is between 6 and 18 hours), the first code block is executed:

    python
    return f"Time to walk {dog_name}!"

    This return statement returns a string indicating that it's time for a walk for the dog named dog_name.

  • If the condition is not true (meaning the walk time is not between 6 and 18 hours), the second code block is executed:

    python
    return f"Wait until 6 PM to walk {dog_name}!"

    In this case, the return statement returns a different message indicating that it's necessary to wait until 6 PM for the dog named dog_name to go for a walk.

The return in this case specifies what result is returned from the function based on the condition. The function returns a string, which is then printed using print(message1) and print(message2).

It's crucial to emphasize that the return statement not only specifies the result to be returned but also immediately terminates the execution of the function. Once a return statement is encountered, the function exits, and any subsequent code within the function is not executed.

Compito

Swipe to start coding

Write a function describe_dog that accepts a dog's name, breed, and age as arguments. Based on the age, the function should return a description:

  1. If the age is less than 0, return: "Invalid age for {name}. Age cannot be negative.".
  2. If the age is 0, return: "{name} is a newborn {breed}. A bundle of joy!".
  3. If the age is 1, return: "{name} is a 1-year-old {breed}. A great companion!".
  4. If the age is greater than 1, return: "{name} is a {age}-year-old {breed}. An old dog with much wisdom!".

Soluzione

def describe_dog(name, breed, age):
# Check if the age is valid
if age < 0:
return f"Invalid age for {name}. Age cannot be negative."
# Check if the dog is a newborn
elif age == 0:
return f"{name} is a newborn {breed}. A bundle of joy!"
# Check if the dog is 1 year old
elif age == 1:
return f"{name} is a 1-year-old {breed}. A great companion!"
# For all other ages, including plural years
else:
return f"{name} is a {age}-year-old {breed}. An old dog with much wisdom!"

# Test the function with various scenarios
description = describe_dog("Buddy", "Labrador", 3)
print(description)
Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 1. Capitolo 4
___(___):
# Check if the age is valid
if ___:
___ f"Invalid age for {name}. Age cannot be negative."
# Check if the dog is a newborn
elif ___:
___ f"{name} is a newborn {breed}. A bundle of joy!"
# Check if the dog is 1 year old
elif ___:
___ f"{name} is a 1-year-old {breed}. A great companion!"
# For all other ages, including plural years
else:
___ f"{name} is a {age}-year-old {breed}. An old dog with much wisdom!"

# Test the function with various scenarios
description = describe_dog("Buddy", "Labrador", 3)
print(description)
toggle bottom row
some-alt