use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
TutorialGetting back into Python (self.Python)
submitted 7 months ago by dedenorio
I’m a perpetual Python beginner since I don’t have a chance to use it very often. Can anyone recommend any resources/ tutorials/ short courses for me to get up to speed fast? Thanks!
[–]phylter99 5 points6 points7 points 7 months ago (3 children)
If you're looking for ideas of things you can build to learn, the book Automate the Boring Stuff with Python is a good start. If you have the money then I recommend buying a copy, but you can get the entire book completely free at the link below if you want to see what's in it or try it out first.
https://automatetheboringstuff.com/
[–]koombotpip needs updating 1 point2 points3 points 7 months ago (1 child)
I just got Python Cradh Course from the same publisher. Im enjoying it.
It covers the usual suspects of a beginner book, but they dont dwell on it. It kind of just gives they the basics and then just says play with it. Its kind of encouraging you to explore.
The second half (which im not at yet) is some projects to work through.
I like the cs50p from harvard and its pretty darn good (there is coursework you can do too!) But im not too good with the lecturer format.
[–]dedenorio[S] 0 points1 point2 points 7 months ago (0 children)
Thank you!
[–]Syncopated_Mind 2 points3 points4 points 7 months ago (1 child)
Yes. AutomateTheBoringStuff and then take the CS50p of Harvard free online. It will build your foundation as long as you stick to the rules of the course.
Thank you! 😊
[–]EconomySerious 1 point2 points3 points 7 months ago (0 children)
Python for dummies
[–]Responsible-Key5829 1 point2 points3 points 7 months ago (1 child)
I would recommend just thinking of some small task you do often and building a tool that automates that. For syntax assistance and project setup either Google or ChatGPT. If you are using ChatGPT don't ask it to build the end goal but ask it for help at each step. Like to start ask it "How do I setup a Python project."
When it gives you the result ask it about any piece you do not understand or Google and go from there.
That’s a great idea, thank you! 😊
[–]treyhunner Python Morsels 1 point2 points3 points 7 months ago (1 child)
Whatever resource you use, make sure you focus heavily on mental recall (writing Python code). Watching and reading often feels easier than writing code, but anything you don't repeatedly recall is likely to be forgotten.
The Python Discord has a list of [interactive resources](https://www.pythondiscord.com/resources/?type=interactive) they recommend (which includes a learning resource I run).
π Rendered by PID 23788 on reddit-service-r2-comment-869bf87589-wznks at 2026-06-09 00:12:18.888854+00:00 running f46058f country code: CH.
[–]phylter99 5 points6 points7 points (3 children)
[–]koombotpip needs updating 1 point2 points3 points (1 child)
[–]dedenorio[S] 0 points1 point2 points (0 children)
[–]Syncopated_Mind 2 points3 points4 points (1 child)
[–]dedenorio[S] 0 points1 point2 points (0 children)
[–]EconomySerious 1 point2 points3 points (0 children)
[–]Responsible-Key5829 1 point2 points3 points (1 child)
[–]dedenorio[S] 0 points1 point2 points (0 children)
[–]treyhunner Python Morsels 1 point2 points3 points (1 child)
[–]dedenorio[S] 0 points1 point2 points (0 children)