From e8eb8fa6b1c2082aabb51ee929a5e83c36424194 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Wed, 17 Mar 2021 15:25:40 +0100 Subject: [PATCH] add True/False point --- content/_index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/_index.md b/content/_index.md index a738342..c5ac24f 100644 --- a/content/_index.md +++ b/content/_index.md @@ -22,6 +22,7 @@ title = "Why python is a bad language" - The syntax for inheritance looks really confusing. `Foo(Bar)` looks like `Foo` has a constructor that takes a `Bar` as an argument, and not like `Foo` extends `Bar`. - For some reason, the `pass` keyword exists. Why can't we just leave the block empty or omit the `:`? Yet another lazy implementation! - The recently added `:=` (assignment expression) operator exists, instead of simply making the normal assignment (`=`) an expression. +- `True` and `False` are capitalized which is unconventional and annoying. {{ sec_header(name="Lacking Features") }} - Lambdas are a poorly implemented afterthought.