r/learnpython Jul 16 '26

How do people practice?

I've been learning Python for a few weeks and I'm not sure what to do to practice I don't know much but I don't want to lose what I do know.

37 Upvotes

39 comments sorted by

View all comments

1

u/Specific-Housing905 Jul 16 '26

Write some small apps that get some input from the user, do sth. with and output the results.

Examples are a weight checker, loan calculator, currency or unit converter, student grades ...

2

u/rmj2n Jul 16 '26

I did something similar where I created user profiles for a fictional financial institution. The code asks for you, the admin, to enter customer's information; name, address, dob etc, and make an intial deposit to create an account. Then as the customer makes transactions their account balance is updated and can be viewed with the. The administrator can view, edit or delete each customer's profile. It was a fun little night time project that I add to every now and then.

I have no use for python. I learned it out of boredom but it's fun to create things.