From e8866bb452775e4cf12a4e8febc5e94f1b3a4495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 29 Jun 2020 17:00:48 +0200 Subject: [PATCH] Faq update --- web/faq.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/web/faq.html b/web/faq.html index 144263b..1d35595 100644 --- a/web/faq.html +++ b/web/faq.html @@ -7,6 +7,10 @@     I also keep the Python console open at all times to test a little snippets of code, to check out the available functions of a module using code completion and above all, to use help(<module/object/function/type>) command. If something is still unclear, then I search the Python docs by googling 'python docs <module/function>'.
+
What does the '<type>' signify?
+    It is a placeholder for an object. It needs to be replaced by an expression, literal or a variable that returns/is of that type. +

+
Why the '<type>' semantics?
    It makes examples much less ambiguous.

@@ -32,8 +36,8 @@     Check out The Hitchhiker’s Guide to Python for a nice overview of mentioned topics.
-
Why are Django and Pandas not covered?
-    Maybe they will be in the future. For now here is a nice Django cheatsheet. +
Why is Django not covered?
+    Maybe it will be in the future. For now here is a nice Django cheatsheet.

Why are there no concrete Regex examples?