BaşlayınÜcretsiz Başlayın

Functions that return single values

You're getting very good at this! Try your hand at another modification to the shout() function so that it now returns a single value instead of printing within the function. Recall that the return keyword lets you return values from functions. Parts of the function shout(), which you wrote earlier, are shown. Returning values is generally more desirable than printing them out because, as you saw earlier, a print() call assigned to a variable has type NoneType.

Bu egzersiz

Introduction to Functions in Python

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • In the function body, concatenate the string in word with '!!!' and assign to shout_word.
  • Replace the print() statement with the appropriate return statement.
  • Call the shout() function, passing to it the string, 'congratulations', and assigning the call to the variable, yell.
  • To check if yell contains the value returned by shout(), print the value of yell.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Define shout with the parameter, word
def shout(word):
    """Return a string with three exclamation marks"""
    # Concatenate the strings: shout_word
    

    # Replace print with return
    print(shout_word)

# Pass 'congratulations' to shout: yell


# Print yell
Kodu Düzenle ve Çalıştır