[Learn Python in Y Minutes - Python](https://learnxinyminutes.com/docs/python/) and [Python 3.10 documentation — DevDocs](https://devdocs.io/python/). Python is one of my favourite programming languages. See [[Python package management]] to get started. One of my hobby projects is called [Marklink and is open source and hosted on GitHub](https://github.com/staticaland/marklink). See [[Marklink]] for more information. ## Dictionaries Here is an example of a dictionary ([[Associative array]]): ```python {"pine": "cones", "oak": "acorns", "maple": "seeds"} ```