在 def hello(name) 和 hello("John") 中,parameter 和 argument 有什么区别?
def hello(name)
hello("John")
这两个术语都只指字符串字面量
name 是返回值
name
"John" 定义了一个新函数
"John"
name 是函数定义中的占位符;"John" 是调用时提供的值