What two lines does this program print?

from Functions
Python 3.14 beginner 2 min

What two lines does this program print?

Python
def announce(name):
    print(f"hello {name}")

result = announce("Mina")
print(result)
Open in playground
Report an error