Python is a beginner-friendly programming language that prioritizes readability, this is why its syntax has many similarities with the English language. In fact, ease of use was one of Python’s founding principles when it was created by Guido van Rossum.
The joy of coding Python should be in seeing short, concise, readable classes that express a lot of action in a small amount of clear code. Not in reams of trivial code that bores the reader to death. — Guido van Rossum
You can start learning Python on your own for free. The best thing about learning Python, is that there is a plethora of documentation, websites, books, tutorials, and courses available. Start by following these steps:
- Find out more about Python.
- Learn the basics.
- Practice as you learn.
- Solve coding challenges.
- Learn domain-specific concepts and libraries.
Software
Documentation
- The latest Python 3.x documentation online.
- Download the latest Python 3.x documentation.
- The Beginner's Guide to Python.
- Python community list of Python editors.
- Python community list of Integrated Development Environments (IDEs).
- The Hitchhiker's Guide to Python.
- A curated list of Awesome Python frameworks, libraries, software and resources.
PEPs
- [ PEP 8 ] Style Guide for Python Code
- [ PEP 20 ] The Zen of Python
- [ PEP 257 ] Docstring Conventions
- [ PEP 287 ] reStructuredText Docstring Format
- [ PEP 405 ] Python Virtual Environments
- [ PEP 435 ] Adding an Enum type to the Python standard library
- [ PEP 484 ] Type Hints
- [ PEP 526 ] Syntax for variable Annotations
- [ PEP 634 ] Structural Pattern Matching
- [ PEP 3101 ] Advanced String Formatting
- [ PEP 3107 ] Function Annotations
- [ PEP 3129 ] Class Decorators
Books
- CR Severance - Python for Everybody
- Kushal Das. - Python for you and me
- CH Swaroop - A Byte of Python
- Allen B Downey - Think Python 2e
- Al Sweigart - Automate the Boring Stuff with Python
- Al Sweigart - Beyond the Basic Stuff with Python
- Al Sweigart - Cracking Codes with Python
- Mark Pilgrim - Dive Into Python 3
- Apprize.best - Python Programming Made Easy (2016)
- Rafe Kettler - A Guide to Python’s Magic Methods
Tutorials
- Programiz - Learn Python Programmning
- Python.org - The Python Tutorial
- Real Python - Real Python Tutorials
- Google - Google's Python Class
- KidsCanCode - Learning to Code with Python
- Pythonbasics.org - Learn Python Programming
- ThePythonGuru - Python tutorials for Beginners
- TechBeamers - Learn Python Step by Step
- pythoncheatsheet.org - Python Cheatsheet
- Pythonspot - Python Tutorials
- Python Tutorial - Python Tutorial
- CodersLegacy - Learn Python
- Study tonight - Python Tutorial
- Full Stack Python - Build , Deploy and Operate Python Applications
Interactive Tutorials & Books
- learnpython.org - Intro to Python tutorial
- W3schools - Python Tutorial
- codetheblocks.com - Code the Blocks (CTB)
- Luther College - Problem Solving with Algorithms and Data Structures using Python
Tutorial Videos
- CS Dojo - Python Tutorials for Absolute Beginners
- Traversy Media - Python Crash Course For Beginners
- Al Sweigart - Automate the Boring Stuff with Python
- freecodecamp - Python Basics with Sam
- Sentdex - Intermediate Python Programming
- Next Day Video - Transforming Code into Beautiful, Idiomatic Python
Courses
- CR Severance - Programming for Everybody (py4e)
- freecodecamp - Python for Everybody
- sololearn - Python Core
Practise Exercises & Coding Challenges
- github.com/gregmalcolm - Python Koans
- checkio - Coding games beginners to advanced
- finxter - Puzzle Training
- Practice Python - Beginner Python exercises
- w3resource - Python Exercises, Practice, Solutions
- GeeksforGeeks - Python Practice Exercises
Top comments (1)
Great sources! Additionally, Firmbee just released an e-book for beginners. There are over 60 pages of practical Python knowledge followed by ready to implement examples. Check out: firmbee.com/ebook-python-from-begi...