From 1ea717b1db914266c9e4b8eec13a1ff01fcd73ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 29 Nov 2018 01:33:48 +0100 Subject: [PATCH] Date --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ```