From 836c964cc7d6790604d8827384fb736b24378f4f Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Tue, 6 Jun 2023 20:52:46 +0200 Subject: [PATCH] fix: improved reading --- knowledge base/python.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/knowledge base/python.md b/knowledge base/python.md index 45133d0..646ecea 100644 --- a/knowledge base/python.md +++ b/knowledge base/python.md @@ -1,6 +1,6 @@ # Python -1. [TL,DR](#tldr) +1. [TL;DR](#tldr) 1. [Dictionaries](#dictionaries) 1. [F-strings](#f-strings) 1. [Logging](#logging) @@ -12,7 +12,7 @@ 1. [Further readings](#further-readings) 1. [Sources](#sources) -## TL,DR +## TL;DR ```py # Declare a dictionary. @@ -26,7 +26,7 @@ F"{name.lower()} is funny." # Make elements in a list unique. # Keep the resulting list mutable. -unique_list = list(set(redundant_list)) +unique_elements = list(set(redundant_elements)) ``` ## Dictionaries