From e2b6de1954fc3965ea9ef9ef99b42aa6dd6047db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 27 Apr 2018 16:38:59 +0200 Subject: [PATCH] Arguments --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e6685d..a1a6fcd 100644 --- a/README.md +++ b/README.md @@ -286,7 +286,7 @@ func(*args, **kwargs) func(1, 2, x=3, y=4, z=5) ``` -**Splat operator can also be used in function declarations:** +#### Splat operator can also be used in function declarations: ```python >>> def add(*a): ... return sum(a) @@ -294,7 +294,7 @@ func(1, 2, x=3, y=4, z=5) 6 ``` -**And in some other places:** +#### And in some other places: ```python >>> a = (1, 2, 3) >>> [*a]