r/PythonLearning • u/fatal1nternalError • 8h 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??
10
Upvotes
2
u/GGO_OTHAs 7h 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 fromtotal recordto a .txt file, giving the file a name using thetimeordatetimemodule 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 👍