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

Minor correction

This commit is contained in:
Satwik 2019-12-20 23:56:35 +05:30
parent 7006084c12
commit 56c0347dd1

7
README.md vendored
View File

@ -161,14 +161,17 @@ $ wtfpython
<!-- Example ID: d3d73936-3cf1-4632-b5ab-817981338863 --> <!-- Example ID: d3d73936-3cf1-4632-b5ab-817981338863 -->
<!-- read-only --> <!-- read-only -->
For some reason, the "Walrus" operator (`:=`) has become a popular feature in the language. Let's check it out, For some reason, the Python 3.8's "Walrus" operator (`:=`) has become quite popular. Let's check it out,
1\. 1\.
```py ```py
# Python version 3.8+
>>> a = "wtf_walrus" >>> a = "wtf_walrus"
>>> a >>> a
'wtf_walrus' 'wtf_walrus'
>>> a := "wtf_walrus" >>> a := "wtf_walrus"
File "<stdin>", line 1 File "<stdin>", line 1
a := "wtf_walrus" a := "wtf_walrus"
@ -183,6 +186,8 @@ SyntaxError: invalid syntax
2 \. 2 \.
```py ```py
# Python version 3.8+
>>> a = 6, 9 >>> a = 6, 9
>>> a >>> a
(6, 9) (6, 9)