What Now Tutorial
TL;DR
After learning Python basics, dive into the Standard Library, explore PyPI packages, join the community, and tackle real-world projects.
Interesting!
Python has one of the most comprehensive standard libraries of any programming language - so much functionality is available without installing anything extra!
Essential Documentation
The Python documentation is your best friend:
- Standard Library: Complete reference for built-in modules
- Language Reference: Detailed syntax and semantics
- Installing Python Modules: Guide to package management
Bookmark docs.python.org - it’s your gateway to official Python knowledge.
Key Resources
Official Sites:
- python.org - Main Python website
- pypi.org - Python Package Index (pip install source)
- scipy.org - Scientific computing ecosystem
Learning Materials:
- pyvideo.org - Conference talks and tutorials
- Python Cookbook - Real-world code examples
- Community forums and mailing lists
Community Engagement
Join the Python community:
- Newsgroup: comp.lang.python
- Mailing list: python-list@python.org
The Python community values helping newcomers - don’t hesitate to engage!
Next Steps
- Explore standard library modules for your interests
- Build a project that solves a real problem
- Contribute to open source projects
- Attend Python meetups and conferences
Python’s strength lies in its ecosystem and community - make use of both!
Reference: What Now?