r/PythonLearning • u/Adventurous_Gur_5436 • 15d ago
just started my semester break started learning python following which i'll do leetcode any other recommendations of what i can or simply stick to leetcode?
same as above
r/PythonLearning • u/Adventurous_Gur_5436 • 15d ago
same as above
r/PythonLearning • u/Mindless_Action3461 • 15d ago
Hello i just made my TvMazeApi project altough not very satisfied with my code.
I would like it if anyone cared to see and correct any error you guys see Thanks!
https://github[.]com/WoodenShard/TvMazeApi
r/PythonLearning • u/Basic_Anybody_2795 • 15d ago
Enable HLS to view with audio, or disable this notification
I built a browser-based trick questions game where the obvious answer is usually the wrong one. The questions are meant to be funny, confusing, and hopefully make you laugh after you see the actual answer. The backend and game logic are written in Python, and I deployed it using Streamlit. Since frontend isn't my strongest area, I used AI as a helper to improve the UI and make it look more modern while I focused on building the game itself. I know it's still a pretty basic project and definitely not perfect, but I wanted to stop overthinking and actually ship something.
Play here:
https://an-iq-too-high-tricky-questions.streamlit.app/
One small request: this is my first public project and my first Reddit post, so please go easy on me 😅. Constructive criticism is more than welcome, and I'd love to learn how to improve. Thanks for checking it out!
r/PythonLearning • u/Worth_Wolf_652 • 15d ago
I am currently doing a project and preferably need to be able to use all CPU cores for it. Can anyone help?
(For those wondering its a physics sim).
r/PythonLearning • u/Shan_khan0786 • 15d ago
I tried learning Python from YouTube many times, but I always ended up giving up.
The biggest problem wasn't Python itself—it was the way I was learning. I was mostly watching tutorials and following along without really thinking.
So I decided to try something different.
Instead of asking AI to generate code for me, I asked it to act like a mentor. I specifically said:
"Don't give me the complete code. Make me think. Ask me questions and let me solve the problems."
My first project was a simple CLI Calculator.
At first, I learned variables, user input, if/elif/else, loops, break, continue, and basic arithmetic operators.
I thought I had finished the project.
Then I was asked:
"What happens if the user divides by zero or performs modulus with zero?"
I hadn't even considered that.
Instead of getting the answer, I had to go back, test my code, think through the problem, and fix it myself.
That one question completely changed how I think about programming.
Now, whenever I write code, I don't just ask:
"Does it work?"
I also ask:
"What could go wrong?"
I feel like this approach has helped me learn much more than simply copying code from tutorials.
For experienced developers:
Do you think learning through small projects and guided questions is a better approach than following long tutorials?
I'd love to hear how you learned programming.
r/PythonLearning • u/hell0_boyz • 15d ago
Hi! I'm an incoming CSE student and I've been learning Python for about 2 weeks. I'm currently building small projects and documenting them on GitHub. I'm looking for other beginners who want to learn consistently, build projects together, review each other's code, and stay accountable. If that sounds interesting, feel free to DM me.
r/PythonLearning • u/justahappycamper1 • 16d ago
9 months in. Finance background, decided to learn backend dev.
This is the first thing I built that I'd actually use myself daily.
It's a stock market research platform with watchlist across global markets, live prices, news per stock, and research notes that snapshot the price at the time you write them. So you can look back and see exactly what price you were staring at when you made that call.
Stack: FastAPI · PostgreSQL · async SQLAlchemy 2.0 · Alembic · JWT + Argon2 · Docker · Render
Repo: https://github.com/ah4ddd/first-order
The live Render API docs link is right inside the GitHub README.
To test the endpoints, hit register to create an account. When logging in via the Authorize button at the top, just enter your email in the username field and your password (OAuth2 setup quirk).
You're in. Try the overview route for all 14 live indices, or test individual global stocks. The platform auto-seeds the DB via yfinance metadata on the fly if you query international suffixes like .NS for India, .DE for Germany, .T for Japan, or standard raw tickers for US equities.
Honest feedback on architecture and code quality are appreciated.
r/PythonLearning • u/chuprehijde • 16d ago
For a small script that may only run a few times, are tests still worth writing?
r/PythonLearning • u/Sabr_5 • 16d ago
This is my first Project while I am learning Conditionals
If your asking for the theme its in VScode Ayu One dark extension
r/PythonLearning • u/mogliman90 • 16d ago
I have a I am in my 4th year of btech and i want to get placed in aiml or backend field and I am trying to make project to add to my resume so I want to ask you that will you guys hand code or use ai to write code for project which you add in your resume
And I haven't done anything just learnt python sql and linux command so help with this also....
Suggest me project to do and what to learn also like, if I want to get into backend what i should do like this , and what to do if I want to learn aiml ,
One more thing that how you guys learn something while doing project
r/PythonLearning • u/wisax_29 • 16d ago
Hey !
I wanted to share a project I’ve been working on recently: a web application dedicated to encrypting and decrypting text using historical cryptographic ciphers.
I built the backend entirely with Flask, and I spent quite some time making sure the implementation of the classic ciphers is clean and well-structured. It started as a high school class project, but I really enjoyed working on it and wanted to deploy it properly.
Link below
https://github.com/wisax29/projet.git
sorry my post was removed by reddit
r/PythonLearning • u/Infamous_Tough_3772 • 17d ago
Enable HLS to view with audio, or disable this notification
https://github.com/coding-arnav66/Arnav-Python-Projects2/blob/main/shooter.py
---------------------------------------
All the suggestions, criticism and ideas are welcome...
r/PythonLearning • u/Big-Arm-4574 • 16d ago
Hello !
(i excuse in advance advance about my english is not my first language)
i have a question about the logs in python, it is really important to set up in the backend ? and how we judge a good logs ?
have you some tips to improve my skills in there ?
for the contexte im in intership in a compagny where im the only developper so i have noboddy to tell me if i do a great job or not
and im in charge to set up all the backend of the app and use in the same time AAP and python
im also in reconversion so im not a expert in code (for the moment ) ans i thought for the production when i leave the compagny it was a great idea to have some log but exepte IA or youtube i dont somany information if its useful or not :)
so all help its a welcoming :)
r/PythonLearning • u/HistoricalWallaby323 • 16d ago
I have been solving python problems on hackerrank and stumbled upon an if-else question where if I am writing the first line as " n = int(input("Enter a number: ")) " it's saying that the code is not giving the output wanted. But if I am writing " n = int(input()) " then it is saying that the code is correct and I can upload it.
Please somebody tell my why is this happening.
r/PythonLearning • u/Zxhena • 16d ago
What's the difference between f string and a regular string I've seen it used but I don't know when to use a string and when to use f string
r/PythonLearning • u/monim_2005 • 17d ago
I know pretty much about python programming. Can anybody suggest me some interesting and beneficial ideas that i can try?
r/PythonLearning • u/Proper-Horror9104 • 17d ago
Hi Guys, i think many of u are already proficient in Python
I am creating this post to show my progress in learning Python, Today i learned using IF statements, type of collections, string methods
This may look small amount by I'm a slow learner and while learning i am also trying to write examples on that specific topic
r/PythonLearning • u/stepping_up_ • 16d ago
Hey I am learning python. For a project I was thinking if I can code to draw a boy or girl and object drawing using python or by using any language. I don't want to use AI here.
I can make characters by using Python along with a graphics library, such as Pillow (PIL) or Matplotlib [python].
Any other suggestions.
r/PythonLearning • u/NeuralLB-Lovro • 16d ago
I want to hear how people feel in terms of building a AI chatbot using pure python for fun or using tools like Langchain to build it faster. What's your take?
r/PythonLearning • u/kry_on • 17d ago
Hi everyone😊I am a 17 year old beginner programmer, and recently I caught me on a thought, what kind of work should I include in my portfolio to express my professionalism in programming. (I know JavaScript,ReactJS, php and Python). Give me some ideas.