第18803题
运行以下Python程序,输出的结果是?
def wenhao(name = 'zhejiang'):
    print('hello' + name)
wenhao()
A

hello

B

hellozhejiang

C

helloname

D

程序将提示运行错误