diff --git a/web/faq.html b/web/faq.html
index a95cb8d..aaa303c 100644
--- a/web/faq.html
+++ b/web/faq.html
@@ -3,9 +3,10 @@
As of 12th March 2024, the only libraries whose latest version requires Python version higher than 3.8 are: numpy, pandas and matplotlib. They all require Python 3.9. This cheatsheet covers pandas library version 2.0 or higher which was released on 3rd April 2023.
-What is the best way to use it?
- I keep the text file open on separate desktop at all times. It is also in a different text editor than the one I usually use, so it's easier to switch to with Ctrl+↹
/ ⌘↹
. Cheatsheet consists of minimal text and short examples so things are easy to find with Ctrl+F
/ ⌘F
. If you're on the webpage, searching for '#<name>'
will only search for the titles.
- I also keep the Python console open at all times to test 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/str>)
command. If something is still unclear, then I search the Python docs by googling 'python docs <module/function>'
.
+How to use it?
+ This cheatsheet consists of minimal text and short examples so things are easy to find with Ctrl+F
/ ⌘F
. If you're on the webpage, searching for '#<name>'
will only search for the titles. To get a link to a specific section click the grey hashtag next to the section's title before copying the address. To search for titles in the text editor use ^<name>
with enabled regular expressions option.
+ I also keep the Python console open at all times to test 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/str>)
command. If something is still unclear, then I search the Python docs by googling 'python docs <module/function>'
.
+ Recently I started using the ptpython REPL (Python console). It supports multiline editing, syntax validation, IDE-like autocompletion and syntax highlighting. It can be installed with pip3 install ptpython
.
What does the '<type>' signify?