1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-06-02 03:18:04 +02:00

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

4
README.md vendored
View File

@ -172,8 +172,8 @@ For some reason, the Python 3.8's "Walrus" operator (`:=`) has become quite popu
```py
# Python version 3.8+
>>> a = "wtf_walrus"
>>> a
>>> 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"