Browse Source

Splat

pull/27/head
Jure Šorn 5 years ago
parent
commit
8858d6c589
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -485,8 +485,8 @@ def add(*a):
#### Legal argument combinations with calls:
```python
def f(*args) # f(1, 2, 3)
def f(x, *args) # f(1, 2, 3)
def f(*args): # f(1, 2, 3)
def f(x, *args): # f(1, 2, 3)
def f(*args, z) # f(1, 2, z=3)
def f(x, *args, z) # f(1, 2, z=3)
```

Loading…
Cancel
Save