def greet(x = 'world'): print('hello', x) greet() 单独输出greet()的时候就只有hello,world,但是加了greet('bart')之后就有hello,bart了。为什么啊? 查看完整描述