diff options
author | Rommel Martinez <ebzzry@ebzzry.io> | 2018-02-03 18:08:24 +0800 |
---|---|---|
committer | Rommel Martinez <ebzzry@ebzzry.io> | 2018-02-03 18:08:24 +0800 |
commit | 213019c689323af7f5c531fb156c34abe8771960 (patch) | |
tree | 7efa10ddb3f880c08855f7e3038d07b3d4524ed0 /python3.html.markdown | |
parent | fce4a810cb066d6d83b829609ac15b08879cd1b0 (diff) |
[python3/en]: fix typo
Diffstat (limited to 'python3.html.markdown')
-rw-r--r-- | python3.html.markdown | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/python3.html.markdown b/python3.html.markdown index 37987582..864228e4 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -6,6 +6,7 @@ contributors: - ["Andre Polykanine", "https://github.com/Oire"] - ["Zachary Ferguson", "http://github.com/zfergus2"] - ["evuez", "http://github.com/evuez"] + - ["Rommel Martinez", "https://ebzzry.io"] filename: learnpython3.py --- @@ -546,9 +547,9 @@ all_the_args(1, 2, a=3, b=4) prints: # Use * to expand tuples and use ** to expand kwargs. args = (1, 2, 3, 4) kwargs = {"a": 3, "b": 4} -all_the_args(*args) # equivalent to foo(1, 2, 3, 4) -all_the_args(**kwargs) # equivalent to foo(a=3, b=4) -all_the_args(*args, **kwargs) # equivalent to foo(1, 2, 3, 4, a=3, b=4) +all_the_args(*args) # equivalent to all_the_args(1, 2, 3, 4) +all_the_args(**kwargs) # equivalent to all_the_args(a=3, b=4) +all_the_args(*args, **kwargs) # equivalent to all_the_args(1, 2, 3, 4, a=3, b=4) # Returning multiple values (with tuple assignments) def swap(x, y): |