Skip to content

Commit 8ed4f49

Browse files
committed
Faq update
1 parent e8866bb commit 8ed4f49

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

web/faq.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<details open><summary><strong>What is the best way to use it?</strong></summary><br>
66
&nbsp;&nbsp;&nbsp;&nbsp;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 <code>Ctrl+↹</code> / <code>⌘↹</code>. Cheatsheet consists of minimal text and short examples so things are easy to find with <code>Ctrl+F</code> / <code>⌘F</code>.<br><br>
7-
&nbsp;&nbsp;&nbsp;&nbsp;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 <code>help(&lt;module/object/function/type&gt;)</code> command. If something is still unclear, then I search the Python docs by googling <code>'python docs &lt;module/function&gt;'</code>.
7+
&nbsp;&nbsp;&nbsp;&nbsp;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 <code>help(&lt;module/object/function/type&gt;)</code> command. If something is still unclear, then I search the Python docs by googling <code>'python docs &lt;module/function&gt;'</code>.
88
</details><br>
99

1010
<details open><summary><strong>What does the '&lt;type&gt;' signify?</strong></summary><br>
@@ -15,8 +15,8 @@
1515
&nbsp;&nbsp;&nbsp;&nbsp;It makes examples much less ambiguous.
1616
</details><br>
1717

18-
<details open><summary><strong>Why are some basics like <code>'&lt;list&gt; = [1, 2, 3]'</code> and <code>'&lt;el&gt; = &lt;list&gt;[&lt;int&gt;]'</code> missing?</strong></summary><br>
19-
&nbsp;&nbsp;&nbsp;&nbsp;This cheatsheet is not intended for complete beginners. This way it can save some valuable space. Nonetheless it tries to be simple enough to be useful for somebody who completed the introductory course. A nice one page cheatsheet that can help you get started can be found <a href="https://github.com/kickstartcoding/cheatsheets/blob/master/build/topical/python.pdf">here</a>.</details><br>
18+
<details open><summary><strong>Why are some basics like <code>'&lt;list&gt; = [&lt;el_1&gt;, &lt;el_2&gt;, ...]'</code> and <code>'&lt;el&gt; = &lt;list&gt;[&lt;int&gt;]'</code> missing?</strong></summary><br>
19+
&nbsp;&nbsp;&nbsp;&nbsp;This cheatsheet is not intended for complete beginners. This way it can save some valuable space. Nonetheless, it tries to be simple enough to be useful for somebody who completed the introductory course. A nice one-page cheatsheet that can help you get started can be found <a href="https://github.com/kickstartcoding/cheatsheets/blob/master/build/topical/python.pdf">here</a>.</details><br>
2020

2121
<details open><summary><strong>What exactly is <code>&lt;el&gt;</code>?</strong></summary><br>
2222
&nbsp;&nbsp;&nbsp;&nbsp;El is short for element and can be any object, but it usually denotes an object that is an item of a collection.
@@ -32,26 +32,26 @@
3232
&nbsp;&nbsp;&nbsp;&nbsp;Check out <a href="https://google.github.io/styleguide/pyguide.html">Google Style Guide</a> and use <code>Ctrl+Alt+L</code> / <code>⌥⌘L</code> shortcut in PyCharm to automatically reformat code.
3333
</details><br>
3434

35-
<details open><summary><strong>Why are import statement, virtual environment, tests, packaging and installation not covered?</strong></summary><br>
36-
&nbsp;&nbsp;&nbsp;&nbsp;Check out <a href="https://docs.python-guide.org/">The Hitchhiker’s Guide to Python</a> for a nice overview of mentioned topics.
35+
<details open><summary><strong>Why are import statements, virtual environment, tests, packaging and installation not covered?</strong></summary><br>
36+
&nbsp;&nbsp;&nbsp;&nbsp;Check out <a href="https://docs.python-guide.org/">The Hitchhiker’s Guide to Python</a> for a nice overview of the mentioned topics.
3737
</details><br>
3838

3939
<details open><summary><strong>Why is Django not covered?</strong></summary><br>
40-
&nbsp;&nbsp;&nbsp;&nbsp;Maybe it will be in the future. For now here is a nice <a href="https://github.com/kickstartcoding/cheatsheets/blob/master/build/topical/django.jpg">Django cheatsheet</a>.
40+
&nbsp;&nbsp;&nbsp;&nbsp;Maybe it will be in the future. For now, here is a nice <a href="https://github.com/kickstartcoding/cheatsheets/blob/master/build/topical/django.jpg">Django cheatsheet</a>.
4141
</details><br>
4242

4343
<details open><summary><strong>Why are there no concrete Regex examples?</strong></summary><br>
4444
&nbsp;&nbsp;&nbsp;&nbsp;Regular expressions are a separate technology that is independent from Python. There are many resources available online.
4545
</details><br>
4646

4747
<details open><summary><strong>Why is there no old style string formating?</strong></summary><br>
48-
&nbsp;&nbsp;&nbsp;&nbsp;Because it's redundant and I don't want to encourage its use.
48+
&nbsp;&nbsp;&nbsp;&nbsp;Because it is redundant and I don't want to encourage its use.
4949
</details><br>
5050

51-
<details open><summary><strong>Why is staticmethod not covered in Class section?</strong></summary><br>
51+
<details open><summary><strong>Why is staticmethod decorator not covered in Class section?</strong></summary><br>
5252
&nbsp;&nbsp;&nbsp;&nbsp;Because it's of very limited use and is easy to mix up with classmethod.
5353
</details><br>
5454

5555
<details open><summary><strong>Why are descriptors not covered?</strong></summary><br>
56-
&nbsp;&nbsp;&nbsp;&nbsp;Because property is sufficient for everyday use.
56+
&nbsp;&nbsp;&nbsp;&nbsp;Because property decorator is sufficient for everyday use.
5757
</details><br>

0 commit comments

Comments
 (0)