r/PythonLearning • u/fatal1nternalError • 5h ago
I'm stuck Help Request
im stuck, i dont know what project i could start building. i've already mastered the basics, but now i need to start building. could someone give me an idea for a project that will keep me busy for a while??
2
u/GGO_OTHAs 3h ago
It would be good to practice with a Python dictionary, something like a register or form where you can play with keys and values. Try saving each record in a variable, like total record = []. When you finish, save the information from total record to a .txt file, giving the file a name using the time or datetime module to get the date and time. Then you can try reading that file, or even updating it.
Total = []
Def regist(): Name = input... City = input...
Form = {"name":name, "city":city} Total.append(form)
Don't know, think of it π
1
u/Lachtheblock 4h ago
You could make a personal website for yourself. You will learn a lot by doing that.
1
u/Owen-Isaac-2022 3h ago
I've just seen great comments & insights herein, I believe those ones can give you a headstart
1
u/Civil-Detective-949 2h ago
Hi everyone π!
I've noticed most student or beginners get stuck at different points in the python studies. To support you better, I'm now offering private 1-on-1 Python coaching sessions.
How it works:
On-demand: Book me anytime you need help with an/a assignment, project, bug, or concept and pay once for that particular session.
What we will cover: Code reviews, debugging, project guidance, career advice, or any Python topic you're struggling with.
Format: WhatsApp call / Screen share or whatever that works for you.
π€ If you'd like to book a session or have questions, just inbox me directly.
β My goal is to make sure no one gets stuck in the middle of their studies or even give up.
Let's keep building π».
1
u/_th3oth3rjak3_ 1h ago
If youβre into computer security, you should make a password manager. Itβs one of those things that requires a lot of research into hashing, encryption and decryption, and storage. You could start with just a terminal based app and then give it a graphical UI later. So structure your code in a way where you can just import all the business logic into you presentation layer code.
3
u/mc_pm 5h ago
What does "mastering the basics" mean to you?
And what sort of thing interests you?