~
~
* https://nose.readthedocs.io/en/latest/#note-to-users > Nose has been in maintenance mode for the past several years and will likely cease without a new person/team to take over maintainership. New projects should consider...
https://github.com/progrmoiz/python-snippets/blob/8d24dd5874d9e931f205b4ea700c974f60112307/scramble.py#L7 ```python In[18]: scramble([1, 2, 3, 4, 5]) Out[18]: [[2, 3, 4, 5, 1], [2, 3, 4, 5, 1], [2, 3, 4, 5, 1], [2, 3, 4, 5, 1], [2,...
https://github.com/progrmoiz/python-snippets/blob/8d24dd5874d9e931f205b4ea700c974f60112307/formats.py#L25 ```python In[16]: for test in (0, 1, -1, 1.23, 1., 1.2, 3.1341): ...: print(f'${test:.2f}') ...: $0.00 $1.00 $-1.00 $1.23 $1.00 $1.20 $3.13 ```
* Use `file.writelines` instead of `file.write` for each line * Use `with` statement context managers instead of manually closing each file * Use a `try/except` inside `main` to unpack the...
* Added spacing for readability * [Renamed classes using CamelCase/CapWords](https://pep8.org/#class-names) * [Renamed variables using snake_case](https://pep8.org/#method-names-and-instance-variables)
* Reorder imports as suggested by PEP8 `get_wifi_list` * Remove assignment to `wlan_status` since it wasn't being used for anything * Remove `returncode` since it wasn't being used for anything...
### What was wrong? I started reading the docs and one of the first words in Quickstart had a typo (`Welcom`). I noticed a few more in that first page...
https://docs.python.org/2/library/md5.html > ### 14.3. md5 — MD5 message digest algorithm > > Deprecated since version 2.5: Use the hashlib module instead. > ^^^^^^^^^^^ ***Last one, back to tests!***
Thanks for the great blog post! I noticed a single typo while reading your post and then found a few trailing semicolons while I was in the notebook fixing it.