Differences between revisions 199 and 213 (spanning 14 versions)
Revision 199 as of 2022-03-22 06:00:38
Size: 10038
Editor: BDaga09
Comment:
Revision 213 as of 2025-12-31 08:47:27
Size: 11291
Comment: Added few missing resources
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
This is a Wiki page. Users with edit rights can edit it. You are therefore free to (in fact, encouraged to) add details of material that other Python users will find useful. It is '''not''' an advertising page and is here to serve the whole Python community. Users who continually edit pages to give their own materials (particularly commercial materials) prominence, or spam the listing with multiple entries which point to resources with only slightly altered material, may subsequently find their editing rights disabled. ''You have been warned''. On a cheerier note - there is a constant stream of new and updated information on Python as the language is exploding in popularity. Only enthusiastic volunteers can keep this page current, so if something helped you, feel free to link it here. This is a Wiki page. Users with edit rights can edit it. You are, therefore, free to (in fact, encouraged to) add details of material that other Python users will find useful. It is '''not''' an advertising page and is here to serve the whole Python community. Users who continually edit pages to give their own materials (particularly commercial materials) prominence, or spam the listing with multiple entries which point to resources with only slightly altered material, may subsequently find their editing rights disabled. ''You have been warned''. On a cheerier note - there is a constant stream of new and updated information on Python as the language is exploding in popularity. Only enthusiastic volunteers can keep this page current, so if something helps you, feel free to link it here.
Line 5: Line 5:
The tutorials on this page are aimed at people who have previous experience with other programming languages (C, Perl, Lisp, Visual Basic, etc.). Also of potential interest are such related Beginners Guides as [[BeginnersGuide/Overview]] and BeginnersGuide/NonProgrammers, and the tips in MovingToPythonFromOtherLanguages. The tutorials on this page aim at people with previous experience with other programming languages (C, Perl, Lisp, Visual Basic, etc.). Also of potential interest are such related Beginners Guides as [[BeginnersGuide/Overview]] and BeginnersGuide/NonProgrammers, and the tips in MovingToPythonFromOtherLanguages.
Line 10: Line 10:
 * [[https://python.land/python-tutorial|A beginner-friendly Python tutorial]] that starts with the absolute basics, but also covers more advanced stuff like Python software deployment.  * [[https://programiz.pro/learn/master-python|A beginner-friendly Python course]] with interactive, bite-size lessons, and over 100 challenges.
 * [[https://python.land/python-tutorial|A beginner-friendly Python tutorial]] that starts with the absolute basics but also covers more advanced stuff like Python software deployment.
 * [[https://python.swaroopch.com/|A Byte of Python]], by Swaroop C.H. An introductory text for beginners and experienced programmers looking to learn Python.
Line 14: Line 16:
 * [[https://classpert.com/python-programming|Classpert - Python]] - A collection of free and paid Python online courses, from a wide range of providers.  * [[https://classpert.com/python-programming|Classpert - Python]] - A collection of free and paid Python online courses from a wide range of providers.
 * [[https://www.codedex.io.com|Codédex]] - A learn to code platform for K-12 and college students.
Line 17: Line 20:
 * [[https://effectivepython.com/|Effective Python]] - Paid book by Brett Slatkin; Practical best practices and idiomatic patterns to write cleaner, safer Python.
Line 21: Line 25:
 * [[https://python-3-patterns-idioms-test.readthedocs.io/en/latest/|Python 3 Patterns, Recipes, and Idioms]] by Bruce Eckel and Friends.  * [[https://www.kaggle.com/learn/|Kaggle Learn]] Hands-on Python and data skills using real datasets and notebooks.
Line 28: Line 32:
 * [[https://docs.pytest.org/en/stable/|Pytest documentation]] Learn testing, fixtures, and clean API design through practical examples.
 * [[https://python-3-patterns-idioms-test.readthedocs.io/en/latest/|Python 3 Patterns, Recipes, and Idioms]] by Bruce Eckel and Friends.
 * [[https://www.oreilly.com/library/view/python-cookbook-3rd/9781449357337/|Python Cookbook - Paid book by David Beazley & Brian K. Jones]] Recipe-based solutions to common real-world Python problems.
Line 30: Line 37:
 * [[http://mcsp.wartburg.edu/zelle/python/index.html|Python Programming: An Introduction to Computer Science]] by John M. Zelle. Used for CS1 courses at Wartburg College, IA. A simple Tkinter-based graphics.py module is used in textbook examples (Python 2 and 3).
Line 48: Line 54:
 * [[http://interactivepython.org/courselib/static/thinkcspy/index.html|How to Think Like a Computer Scientist, Interactive Edition]]
 * [[http://interactivepython.org/runestone/static/pythonds/index.html|Problem Solving with Algorithms and Data Structures using Python]] (second-level course)
 * [[https://hackinscience.org|HackInScience: free and open-source Python training website]]
 * [[https://labex.io/skilltrees/python|LabEx - Hands-on Labs]] - Practice Python programming with interactive exercises in a web-based coding environment, offering hands-on labs and real-world scenarios.
 * [[https://learn-python.adamemery.dev|Learn Python]] - A no install Python course with interactive exercises powered by Pyodide.
 * [[https://python-editor.adamemery.dev|Python Editor]] - A web app for writing and running basic Pythons scripts
Line 52: Line 60:
 * [[https://pyflo.net|PyFlo]] - A free, interactive guide to becoming a Python Programmer
 * [[https://learnpy.dev|learnpy.dev]] - A kid-oriented, interactive, web-based introduction to coding in Python
Line 73: Line 83:
  * [[https://www.codecademy.com/learn/learn-python-3|Free Python 3 course]] (almost daily Python lesson + cheat sheets)
Line 78: Line 87:
 * [[https://www.codecademy.com/learn/learn-python-3|Paid Python 3 course]] (almost daily Python lesson + cheat sheets)
Line 80: Line 90:
CategoryPythonWebsite CategoryPythonWebsite CategoryCategory CategoryDocumentation

Please Note

This is a Wiki page. Users with edit rights can edit it. You are, therefore, free to (in fact, encouraged to) add details of material that other Python users will find useful. It is not an advertising page and is here to serve the whole Python community. Users who continually edit pages to give their own materials (particularly commercial materials) prominence, or spam the listing with multiple entries which point to resources with only slightly altered material, may subsequently find their editing rights disabled. You have been warned. On a cheerier note - there is a constant stream of new and updated information on Python as the language is exploding in popularity. Only enthusiastic volunteers can keep this page current, so if something helps you, feel free to link it here.

Python for Programmers

The tutorials on this page aim at people with previous experience with other programming languages (C, Perl, Lisp, Visual Basic, etc.). Also of potential interest are such related Beginners Guides as BeginnersGuide/Overview and BeginnersGuide/NonProgrammers, and the tips in MovingToPythonFromOtherLanguages.

Books, Websites, Tutorials (non-interactive)

Resources

Interactive Tools and Lessons

Python Video Tutorials

Python video tutorial (commercial/paid)

Free Python Courses

Other Python Resource Aggregators


CategoryPythonWebsite CategoryCategory CategoryDocumentation

BeginnersGuide/Programmers (last edited 2026-01-08 18:28:33 by MatsWichmann)

Unable to edit the page? See the FrontPage for instructions.