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?