下列程序段返回的值为“Hello!Python” 。
lst="Hello!Python"
def f():
global lst
lst="Hello!"
return lst
f()
print(lst)