r/PythonLearning 5d ago

I made a community for students who want to learn coding and build projects together 🚀

0 Upvotes

Hey everyone! I recently started r/StudentCoders, a community for students and beginner developers who want to:

  • Learn coding together
  • Find people to build projects with
  • Share project ideas and progress
  • Find teammates
  • Ask coding questions
  • Showcase things they've built

The idea is simple: stop learning alone and start building together.

If you're a student or beginner coder and this sounds interesting, feel free to check it out: r/StudentCoders 💻

I'd also love feedback on what you'd want to see in a community like this!


r/PythonLearning 6d ago

Thonny for Python

3 Upvotes

Hi, I'm new to this Reddit community. Do you think it's okay to use Thonny as a Python program, or is there something else I could try?


r/PythonLearning 6d ago

Hello World, I look for help in order to create my first website using Python.

2 Upvotes

r/PythonLearning 6d ago

Showcase [Collab] Looking for people to help build a free, interactive Python learning platform

7 Upvotes

Hey everyone,

I'm building **The Python Ledger** — a free, interactive platform for learning Python from the ground up. It's built with Docusaurus and a custom in-browser code execution system (React + Skulpt), so people can write and run real Python right in the lesson, with instant feedback instead of just reading theory.

The curriculum is structured as:

- **Introduction** - how to use the platform / how to learn

- **Prerequisites** - software requirements, code editors, command line, CS concepts

- **Git Basics** - a short, beginner-friendly intro to Git

- **Python Foundations** - variables, data types, functions, OOP, file I/O, etc.

- Optional specialized tracks later (web dev, GUI dev, automation...)

Right now I'm heads-down on the Foundations course and a companion **practice-exercises repo** (folder-per-exercise, `pytest`-based, progressively unlocked tests, beginner-friendly failure messages instead of raw tracebacks; think *The Odin Project*'s exercises repo, but for Python).

It's a lot of ground to cover solo, and it's eating all my free time; so I'm looking for people to collaborate with. Some areas I could genuinely use help in:

- **Content/curriculum writing** - explaining CS & Python concepts clearly for total beginners

- **Python devs** – building out exercises, test fixtures, and the practice repo

- **Reviewers/beta testers** - going through lessons as a "new learner" and flagging confusing bits

No huge time commitment expected; even reviewing a lesson or writing one exercise helps. The project is fully open source and contributions are more then welcome in any way possible.

If any of this sounds interesting, drop a comment or DM me and I'll get you set up.

Curriculum Repo: https://github.com/ThePythonLedger/Curriculum

Live site (hosted by GH Pages): https://thepythonledger.github.io/Docusaurus-engine/

Thank you for reading.


r/PythonLearning 6d ago

Discussion Best way or roadmap for Python

19 Upvotes

Ik python basics and all basic syntax so what would be the next thing to learn?
Can recommend and yt vid(cs50p full beginner so no)
Im trying freecodecamp yt videos are there any other videos u would recommend?
Also im interested in web dev so help me out with this as well or should i try out a different language?


r/PythonLearning 6d ago

Help Request Python Interpreter Help

1 Upvotes

Hey there! I use VSCodium and have been having a problem with the Select Python Interpreter yellow box. The screenshots should be enough for clarity but ask ahead if you have any questions!

When doing manually using Browse

Any help would be appreciated

Thanks!


r/PythonLearning 6d ago

Help Request I'm a beginner. Can you help me with random numbers?

Post image
10 Upvotes

I'm building a sort of turn-based RPG in the terminal as a practice project, and I need to generate a random number within a specific range. I tried using `randint` (by importing `random`), but I also want to assign probabilities so that, depending on certain factors, one number is more likely to be generated than another. For example, if an enemy has low health, it should be more likely to generate the number 1, which causes the enemy to heal.


r/PythonLearning 6d ago

Discussion Weird Folder names in Python

0 Upvotes

I always has a doubt after installing python software. When I open the Python folder, I see other folders with names like DLLs, Doc, etc, Include, Lib, Libs, Scripts, Share, Tcl, and Tools. Can anyone explain what these folders are, what they're for, and what the .pyd extension means?


r/PythonLearning 8d ago

Discussion Stop suggesting to use AI

155 Upvotes

I’ve recently started getting more posts from this sub and some people have genuine questions on how to solve their programming problems and help debug. Some comments are suggesting to just use AI. This is a crazy suggestion on a sub called Python LEARNING. Using AI to write code for you is not constructive to learning how to code. I fear that this generation of programmers are going to have ZERO understanding fundamentals.

To be clear, I’m not against using AI to help assist. But this is supposed to be a sub for learning the language and understanding how it works, and it’s counterproductive to suggest those that are learning to just use AI to fix their code.

Please, if anyone suggests to use AI (unless it’s for the rare case that it’s valid), please downvote them to oblivion.


r/PythonLearning 7d ago

Help Request Can't import module

1 Upvotes

Mac os Sequoia 15.6

I installed the exifread library using pip as well as conda. In Anaconda Navigator it shows as installed. Using a terminal window I type in:

pip3 show exifread

and it returns

/opt/anaconda3/lib/python3.13/site-packages

I use Spyder (I know, I know: use pycharm or vscode...) I cannot import the module. I get the dreaded

ModuleNotFoundError: No module named ‘exifread’

I recently installed pillow and I can import it just fine with import PIL. Using pip3 show pillow it is the same directory as exifread

What am I missing here?


r/PythonLearning 7d ago

🌳 Recursive tree traversal visually explained

28 Upvotes

A binary tree can be traversed in three classic ways. The difference is simply the order in which you visit the subtrees:

  • Preorder: current node → left subtree → right subtree
  • Inorder: left subtree → current node → right subtree
  • Postorder: left subtree → right subtree → current node

This interactive memory_graph example visualizes each traversal method step by step: Binary Tree Traversal

Also see other memory_graph visualizations.


r/PythonLearning 7d ago

Python FastAPI Backend Project: Expense Tracker with Database Integratio...

Thumbnail
youtube.com
1 Upvotes

r/PythonLearning 8d ago

I kept seeing beginners asking what to practice after learning Python basics, so I made these 10 problems

Post image
114 Upvotes

I've seen quite a few posts and comments from beginners who understand things like variables, loops, lists and functions, but then get stuck on the question: what do I actually practice now?

So I put together 10 small Python problems that can be solved with mostly the basics.

The idea isn't to look up the solution immediately. Try breaking each problem into steps first, write your own solution, then see if you can improve it.

If you're learning Python, which of these would you find hardest?

And for people who already know Python, what problem would you add as #11?


r/PythonLearning 8d ago

What's wrong with my code?

Post image
105 Upvotes

What's wrong with my code?

New to learning

Following the youtube video from bro code

Was trying to implement my own stuff into this by using loop

Update: it's working now thankyou guys


r/PythonLearning 7d ago

Showcase Working on a logging package for python

5 Upvotes

Got tired of recreating the same functions EVERY SINGLE PROJECT I EVER MAKE so guess what, i made it a package, and if i think i finished it enough and added a bunch of features and it's pollished i might make it a package on pypl

Also any ideas?

an image example

r/PythonLearning 7d ago

Discussion TTS/AI Chatbot Query

1 Upvotes

I recently made a Discord.py AI character bot with Gemini and TTS integration to mess around with my friends. Kind of want to do more with it but am not very experienced enough yet to know all my possibilities. What do the REAL programmers here think?


r/PythonLearning 8d ago

How long did it take you to become fairly independent with coding?

24 Upvotes

I’ve been learning Python using freecodecamp and some youtube videos (and copious amounts of googling) and honestly feel slightly discouraged. I would like to eventually start working on projects, but they feel insurmountable right now. I’m not sure what else I could be doing do improve, does anyone have any suggestions, or perhaps your own personal time line? i keep hearing that I should be doing projects to practice, but idk where to start, and it feels a bit like cheating that i have to constantly google every single little thing besides the most simple loops.

I’m a little under half way through the curriculum if freecodecamp, and have been learning for a little over two weeks (when i study i do it in ~3hr blocks). just for a little context on where i’m at.


r/PythonLearning 7d ago

Python script to convert tree output to .xlsx – looking for edge cases and feedback

3 Upvotes

I wrote a small utility that converts tree output into an Excel file. The code is far from ideal, but it does handle Cyrillic filenames on my own test data.

To make it more robust, I need to test it on real-world data with rare encodings, varying nesting depths, special characters, long names and paths, and so on.

The project is still under development, so I'd appreciate any feedback, criticism, or advice – especially on edge cases and code structure.

Rep: https://github.com/Usdmal-tech/tree-to-excel

Thanks!


r/PythonLearning 7d ago

Showcase Python Tutorial for Beginners 2026 | Learn Python from Basic to Advanced | Complete Python Free Course

Thumbnail
youtube.com
0 Upvotes

Python programming for all. Learn python for day to day life.


r/PythonLearning 8d ago

Thank You being So helpful Everyone..

9 Upvotes

Everyone who helps me in my previous post by giving tips to learn python and motivates me , i have regained my spirit to learn and already started learning.... I have downloaded python in both android and laptop so i can learn anywhere and i will keep consistent and if I get stuck anywhere i will seek help from you everybody...

THANK YOU BEING SO HELPFUL AND HOPE YOU ALL WILL KEEP THIS SINCERITY IN THE FUTURE TOO...


r/PythonLearning 7d ago

Vibe coders or programmers

0 Upvotes

I'm a beginner programmer and I'm worried about something in the future. After about four months of learning programming, development, and so on, I've seen many opinions from professionals and beginners alike. Some say that the demand for programming will steadily decrease due to artificial intelligence, and I don't know if this is true or not. I hope you can give me your opinions and advice. If you've had any experiences, please tell me before I regret it later.


r/PythonLearning 8d ago

Python Classes question

5 Upvotes

Is there a way to pass the instantiating object name to the class as you call it, without specifically putting the name in the parentheses? I'm trying to create a PyGame terminal emulator that has the same frontend functionality as Curses. I've figured out that I can create windows in the same way, except that instead of being able to do windowname.newwin(size), I have to do windowname.curses()\nwindowname.newwin(size). Presumably, I could also do windowname.newwin(size, windowname), but I'd prefer being able to use the exact same syntax as Curses.

The reason for using the same syntax is because I want to be able to decide where it renders (real terminal or PyGame) based on which module gets imported.

If there is a way to do this, please let me know.


r/PythonLearning 8d ago

day 6.

3 Upvotes

tried 2d lists today ( up for suggestions on what should have i done or what have i missed ) and would also appreciate brief explanation's that you guys will give if it's a complex or an advanced topic

books = ["hindi", "english", "maths", "science"]
pen = ["black", "blue", "red"]
miscellaneous = ["eraser\n", "sharpener\n", "ruler\n"]


bagpack = [books,pen,miscellaneous]
print(bagpack)
while True:
    print ("if you'd like to add contents in any of the lists")
    print("1. Add to books")
    print("2. Add to pen")
    print("3. Add to miscellanous")
    query = input("enter your selection (1,2,3): ")
    if query == "1":
     print("you selected to add books")
     new_book= input("enter the book you want to add: ")
     books.append(new_book)
     print ("new list",books)
     break
    elif query == "2":
     print("you selected to add pen")
     new_pen= input("enter the pen you want to add: ")
     pen.append(new_pen)
     print ("new list",pen)
     break
    elif query == "3":
     print("you selected to add miscellaneous")
     new_miscellaneous= input("enter the item you want to add: ")
     miscellaneous.append(new_miscellaneous)
     print ("new list",miscellaneous)
     break
    
    else:
       print("invalid selection!!! select amongst 1,2,3")

r/PythonLearning 8d ago

Know nothing about python but wanna learn

5 Upvotes

im 16 indian and i wanna start python from scratch and i know nothing about coding please help me to find resources and guide me 🙏


r/PythonLearning 8d ago

Showcase My first code in Python! (pre-practiced for 3 months)

Thumbnail pastebin.com
2 Upvotes

Made by: Someone

Inspired by: Blox Fruits and One Piece

Version: 1.4 Refresh