From ec9f4444a3a507aa175ce5b600f956c2fa28f9a4 Mon Sep 17 00:00:00 2001 From: Abhinav sharma <37344387+abhi9249@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:02:44 +0530 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9f30a41..83839fd 100644 --- a/README.md +++ b/README.md @@ -172,9 +172,9 @@ For some reason, the Python 3.8's "Walrus" operator (`:=`) has become quite popu ```py # Python version 3.8+ ->>> a = "wtf_walrus" ->>> a -'wtf_walrus' +>>> a = "wtf_walrus" # a is a variablein python and can store any value +>>> a # After running this command we will get the contents of the variable A +'wtf_walrus' >>> a := "wtf_walrus" File "", line 1