Tell us what’s happening:
greeting = ‘Hello World’
print(greeting) # Output: Hello World
You will learn more about functions in upcoming lessons. For now, know that a function is a reusable block of code that can be called, or invoked, to run its code, and arguments can be passed to it.
In the example above, print(greeting) is a function call, and greeting is the argument of the function.
Your code so far
name = 'Alice'
# User Editable Region
print("greeting")
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36
Challenge Information:
Build a Report Card Printer - Step 2