diff --git a/README.md b/README.md index 118725b..24483ad 100644 --- a/README.md +++ b/README.md @@ -326,7 +326,7 @@ Arguments --------- **"*" is the splat operator, that takes a list as input, and expands it into actual positional arguments in the function call:** ```python -args = (1, 2) +args = (1, 2) kwargs = {'x': 3, 'y': 4, 'z': 5} func(*args, **kwargs) ```