We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa7b477 commit 9a65f13Copy full SHA for 9a65f13
tutorials/learnpython.org/en/Functions.md
@@ -81,11 +81,11 @@ Tutorial Code
81
82
# Modify this function to return a list of strings as defined above
83
def list_benefits():
84
- pass
+ return []
85
86
# Modify this function to concatenate to each benefit - " is a benefit of functions!"
87
def build_sentence(benefit):
88
+ return ""
89
90
def name_the_benefits_of_functions():
91
list_of_benefits = list_benefits()
0 commit comments