mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 21:52:31 +03:00
fixed unintended opposite meaning
This commit is contained in:
parent
344518d2f6
commit
a4a7b2dd83
@ -458,7 +458,7 @@ add(y=6, x=5) # Keyword arguments can arrive in any order.
|
|||||||
|
|
||||||
|
|
||||||
# You can define functions that take a variable number of
|
# You can define functions that take a variable number of
|
||||||
# positional args, which will be interpreted as a tuple if you do not use the *
|
# positional args, which will be interpreted as a tuple by using *
|
||||||
def varargs(*args):
|
def varargs(*args):
|
||||||
return args
|
return args
|
||||||
|
|
||||||
@ -466,7 +466,7 @@ varargs(1, 2, 3) # => (1, 2, 3)
|
|||||||
|
|
||||||
|
|
||||||
# You can define functions that take a variable number of
|
# You can define functions that take a variable number of
|
||||||
# keyword args, as well, which will be interpreted as a dict if you do not use **
|
# keyword args, as well, which will be interpreted as a dict by using **
|
||||||
def keyword_args(**kwargs):
|
def keyword_args(**kwargs):
|
||||||
return kwargs
|
return kwargs
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user