mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 20:38:06 +02:00
Fix typo in example
Fix the True assignment example.
This commit is contained in:
commit
e7ce91da86
1 changed files with 1 additions and 1 deletions
|
@ -1022,7 +1022,7 @@ def some_func():
|
||||||
### When True is actually False
|
### When True is actually False
|
||||||
|
|
||||||
```py
|
```py
|
||||||
True == False
|
True = False
|
||||||
if True == False:
|
if True == False:
|
||||||
print("I've lost faith in truth!")
|
print("I've lost faith in truth!")
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue