参考答案可行吗?既然指定了name赋值,后面的“Alice‘能行?我觉得我这个挺好的
def greet(greeting=None):
if greeting==None:
print('hello,world.')
else:
print('hello,{}.'.format(greeting))
greet()
def greet(greeting=None):
if greeting==None:
print('hello,world.')
else:
print('hello,{}.'.format(greeting))
greet()
2021-04-23
举报