From 70e12f10be66bdd419504ae7c88124269deefe24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 29 Dec 2018 02:08:01 +0100 Subject: [PATCH] Parameters --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e55dd62..40cda4e 100644 --- a/README.md +++ b/README.md @@ -1029,7 +1029,7 @@ False #### Getting the number of parameters of a function: ```python from inspect import signature -sig = signature() +sig = signature() no_of_params = len(sig.parameters) ```