Build a Report Card Printer - Step 2

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

The instructions ask you to " Refer to the example and print the name variable."

please am new to python i dont really understand what to do can you help out or explain

you used print correctly, but you need to print the name variable, not "greeting"

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.