Skip to content

Commit

Permalink
不是或者,没有or。而且这样改变罗辑关系。
Browse files Browse the repository at this point in the history
Writing *args and **kwargs is just a convention.没有or
  • Loading branch information
Mingren Shen committed Mar 31, 2016
1 parent 4150c14 commit 718f7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion args_kwargs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

我观察到,大部分新的Python程序员都需要花上大量时间理解清楚 ```*args``````**kwargs```这两个魔法变量。那么它们到底是什么?

首先让我告诉你, 其实并不是必须写成```*args``````**kwargs```。 只有变量前面的 ```*```(星号)才是必须的. 你也可以写成```*var``````**vars```. 或者写成```*args``````**kwargs```只是一个通俗的命名约定。 那就让我们先看一下```*args```吧。
首先让我告诉你, 其实并不是必须写成```*args``````**kwargs```。 只有变量前面的 ```*```(星号)才是必须的. 你也可以写成```*var``````**vars```. 而写成```*args``````**kwargs```只是一个通俗的命名约定。 那就让我们先看一下```*args```吧。

0 comments on commit 718f7bf

Please sign in to comment.