diff --git a/docs/wiki/.pages b/docs/wiki/.pages index 072ccc4..2562377 100644 --- a/docs/wiki/.pages +++ b/docs/wiki/.pages @@ -2,4 +2,8 @@ order: asc sort_type: natural nav: - index.md + - howtos + - Go + - Python - ... + - tags.md \ No newline at end of file diff --git a/docs/wiki/Python/index.md b/docs/wiki/Python/index.md new file mode 100644 index 0000000..e5dfe54 --- /dev/null +++ b/docs/wiki/Python/index.md @@ -0,0 +1,31 @@ +--- +tags: + - python +--- + +# Usesul links + +

logo.png

+ +## Official documentation + +- [Built-in Functions](https://docs.python.org/3/library/functions.html) +- [Design and History FAQ](https://docs.python.org/3/faq/design.html) + +## Sites/Repos + +- [Real Python Tutorials](https://realpython.com) - best Python tutorials +- [What the f*ck Python!](https://github.com/satwikkansal/wtfpython) - Exploring and understanding Python through surprising snippets + +## Posts + +- [Understanding all of Python, through its builtins](https://tushar.lol/post/builtins/) +- [The Comprehensive Guide to mypy](https://tushar.lol/post/mypy-guide/) + +## Books + +- [The Little Book of Python Anti-Patterns](https://docs.quantifiedcode.com/python-anti-patterns/) + +## Miscellanious + +- [Why does Python use methods for some functionality (e.g. `list.index()`) but functions for other (e.g. `len(list)`)?](https://docs.python.org/3/faq/design.html#why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list) diff --git a/docs/wiki/Python/index/python-logo.png b/docs/wiki/Python/index/python-logo.png new file mode 100644 index 0000000..4ec9d0a Binary files /dev/null and b/docs/wiki/Python/index/python-logo.png differ