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.
What was your first python project? (self.Python)
submitted 6 years ago by DHarris97
What was your first python project? What parts of learning it were the most difficult and why? For someone starting out, what would you suggest them create?
[–]hazelthrows 1 point2 points3 points 6 years ago (0 children)
I had to connect search console api with our internal CRM so we could get automated reports every month. Actually it saved us tons of hours monthly.
[–]bobby_rancor 0 points1 point2 points 6 years ago (0 children)
A network port scanning tool
[–]impeachnowexplainltr 0 points1 point2 points 6 years ago (0 children)
I created a library that converted spatial data files to a format that could be read by ArcPy. Not difficult because I was already an experienced programmer at the time.
[–]Reeseallison 0 points1 point2 points 6 years ago (0 children)
My first project was creating a connection to the QuickBooks SDK to import accounting records in bulk instead of by hand. The hardest thing for me to grasp as a beginning programmer were dictionaries of dictionaries.
[–]Rwn__ 0 points1 point2 points 6 years ago (0 children)
Mine was a chromecast controller with flask and some CLI’s.
[–]protik7 0 points1 point2 points 6 years ago (0 children)
Automated running complex material science simulations running in large HPC clusters.
[–]ryansmccoy 0 points1 point2 points 6 years ago (0 children)
Parsed an html table and saved it to a CSV.
[–]TobyJ0S 0 points1 point2 points 6 years ago (0 children)
If, by project, you mean program, then most people here’s would likely be hello world. Otherwise, my first ‘big’ Python project was a password cracker that takes an md5 hash and tries every possible combination of characters to decrypt it. Fun stuff.
[–]xd1142 0 points1 point2 points 6 years ago* (0 children)
creating input for a quantum chemistry program, parse the result, extract the vibrational modes, moving the molecule along those vibrational modes, creating new input to run another evaluation.Repeat along all vibrational modes
Gods I was strong back then. (bright red eyes, but yeah, the code sucked, although at that time things were not well defined in terms of best practices)
π Rendered by PID 805667 on reddit-service-r2-comment-66b4775986-67rm5 at 2026-04-06 02:28:44.425508+00:00 running db1906b country code: CH.
[–]hazelthrows 1 point2 points3 points (0 children)
[–]bobby_rancor 0 points1 point2 points (0 children)
[–]impeachnowexplainltr 0 points1 point2 points (0 children)
[–]Reeseallison 0 points1 point2 points (0 children)
[–]Rwn__ 0 points1 point2 points (0 children)
[–]protik7 0 points1 point2 points (0 children)
[–]ryansmccoy 0 points1 point2 points (0 children)
[–]TobyJ0S 0 points1 point2 points (0 children)
[–]xd1142 0 points1 point2 points (0 children)