4 Respostas
+ 4
Top 50 Python Project Ideas with Source Code in 2025
https://www.upgrad.com/blog/python-projects-ideas-topics-beginners/
+ 2
Brad Cheveldayoff ,
from my point of view, you should continue learning from the course *introduction to python* that you already have enrolled.
if you are looking for exercises:
> you can find *code coach exercises* in der *community section*. if you click on *view more*, the various exercises are shown in a list.
> each exercise indicates the difficulty level, so you can start with exercises marked as easy. select the programming language you want to use.
> first you should read the task description *carefully* and also the sample input / output data. then you can go to the code area and try to solve the exercise.
> finally hit run. the playground will use various values (test cases) to check if your code meets the requirements. only if all test cases are passed, the exercise will be marked as solved.
you can switch between the task description and the coding area.
if you have any doubts or questions you can place them here in this forum.
0
Brad Cheveldayoff, it's really great to see your willingness to learn deeply!
What most people do is make a simple calculator which handles basic arithmetic operations i.e.: +, −, × and ÷.
You might extend it later with exponentiation, square roots, etc.
I have also seen that many people now are trying out number guessing games and Rock, Paper, Scissors game. For the former, write a code so that the computer picks a random number and the user inputs their gueses. You might also add a fixed number of guesses or compare the entered number with the number chosen by the computer to print hints like "Too low","Too high", etc. For the later, you might want to add score-tracking over multiple rounds.
One thing you might be needing for these two is the random module. You can read more here:
https://www.w3schools.com/JUMP_LINK__&&__python__&&__JUMP_LINK/module_random.asp
https://docs.python.org/3/library/random.html
0
Here are a few reference codes:
https://sololearn.com/compiler-playground/cnQcR2ZfdA37/?ref=app
[Note that while loops don't work perfectly in Sololearn because Sololearn Code Playground requires you to enter all the inputs together. You can try on other apps or IDEs e.g. Pydroid 3: https://play.google.com/store/apps/details?id=ru.iiec.pydroid3 ]
https://sololearn.com/compiler-playground/c6Sp2PmuFGLT/?ref=app (Sorry, this code is not commented properly and is not exactly a beginner project.)
https://sololearn.com/compiler-playground/c3Y1eRrQy74u/?ref=app (This one was my first Python project and there are a few redundancies or maybe even some bugs but I feel too lazy to optimise and debug if. Sorry!)
https://sololearn.com/compiler-playground/cZQa89jHH4JE/?ref=app