<detailsopen><summary><strong>Python 2 or Python 3?</strong></summary><br>
Python 3.7
Python 3.7 (or higher).
</details><br>
<detailsopen><summary><strong>What is the best way to use it?</strong></summary><br>
@ -36,8 +36,16 @@
This way classes can be copy-pasted into the Python console, which would otherwise raise IndentationError.
</details><br>
<detailsopen><summary><strong>Why are import statements, virtual environments and tests not covered?</strong></summary><br>
Check out <ahref="https://docs.python-guide.org/">The Hitchhiker’s Guide to Python</a> for a nice overview of the mentioned topics.
<detailsopen><summary><strong>Why are virtual environments and tests not covered?</strong></summary><br>
Check out <ahref="https://docs.python-guide.org/">The Hitchhiker’s Guide to Python</a> for a nice overview of the mentioned topics.<br><br>
A quick overview of virtual environments in Unix:<br>
<code>python3 -m venv env # Creates virtual environment in current directory.</code><br>
<code>py -m venv env # Creates virtual environment in current directory.</code><br>