这段程序会输出哪两行?

来自 函数
Python 3.14 入门 2分钟

这段程序会输出哪两行?

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

result = announce("Mina")
print(result)
在试验场中打开
报告错误