Update README.md

This commit is contained in:
Abhinav sharma 2020-10-01 14:02:44 +05:30 committed by GitHub
parent 27b66b4f31
commit ec9f4444a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

6
README.md vendored
View File

@ -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 "<stdin>", line 1