DEV Community

Cover image for Learning Python
Blikoor
Blikoor

Posted on • Updated on

Learning Python

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:

  1. Find out more about Python.
  2. Learn the basics.
  3. Practice as you learn.
  4. Solve coding challenges.
  5. Learn domain-specific concepts and libraries.

Software

Documentation

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

Tutorials

Interactive Tutorials & Books

Tutorial Videos

Courses

Practise Exercises & Coding Challenges

Podcasts

Top comments (1)

Collapse
 
firmbeecom profile image
Firmbee • Edited

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...