From 31ae1ce3796eca852899135ee15066663ec28a19 Mon Sep 17 00:00:00 2001 From: surister Date: Thu, 28 Nov 2019 10:48:26 +0100 Subject: [PATCH] styling --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index c935f2b..ebea961 100644 --- a/README.md +++ b/README.md @@ -2415,7 +2415,6 @@ def a (): return >>> None - ``` And @@ -2452,19 +2451,16 @@ Disassembly of ", line 5>: 2 RETURN_VALUE ``` -An empty return is exactly the same as return None and functions without any return +An empty return is exactly the same as return None and functions without any explicit return will always return None regardless of the operations, therefore - - ``` def sum(a, b): global C c = a + b >>> None - ```