We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Couldn't load subscription status. Retry
There was an error while loading. Please reload this page.
在编程领域,Argument是指传给函数或方法的值。^1 为了Parameter (形式参数、形参,formal argument) 进行区别,Argument应译成实际参数、实参 (actual parameter) 。^2
# 这里的foo参数,就叫Parameter # 形式上的参数 (形参) def func(foo, bar=None): ... # 这里的data参数叫Argument # 实际上的参数 (实参) data = 1 func(1)