def?greet(x?=?'world'): ????print('hello',?x) ???? ?greet() ? ?單獨輸出greet()的時候就只有hello,world,但是加了greet('bart')之后就有hello,bart了。為什么?。? 查看完整描述