下列程序段返回的值为"Hello!Python"( )。
Hello = "Hello!Python" def Foo():
Hello = "Hello!" return Hello
Foo() print(Hello)