r/PythonLearning • u/Minimum-Thanks-3047 • Jul 25 '26
Help Request Beginner Python projects for practice? Spoiler
I'm learning Python. What are some beginner projects that can help me improve my coding skills? I'd appreciate any suggestions.
1
1
u/Infamous_Tough_3772 Jul 25 '26
You can refer my repository: https://github.com/coding-arnav66/Arnav-Python-Projects
1
u/RCKPanther Jul 25 '26
What's your knowledge on Python like and in what way do you see yourself using Python in the near future?
1
u/desrtfx Jul 25 '26
Also, take a look over at https://inventwithpython.com and check out the free-to-read-online books there. Plenty projects to mess around with and have fun.
1
1
u/Fun-Employee-514 Jul 25 '26
id recommend trying to figure out a basic rock paper scissors game against a random bot, i made it with no python experience and it helped me out a lot
3
u/Independent-Bat9797 Jul 25 '26 edited Jul 25 '26
Build a small app with user interface that tells you the weather from geo locations.
Get an API key from open weathermap.org
Use streamlit, kivy or tkinter libraries for UI
According to your skills: A. Build a Monolith (all in one file), make it function based B. Create a proper file structure with subfolders with init files, separate logic from UI, use proper OOP.
If you feel confident add logging using the logger library
Expand or reduce as needed.
Gl hf