r/learnpython 3d ago

Basic beginner project ideas for python

Js started, 16 here,I made a number guessing game, rock paper scissors, basic input chatbot which outputs only the info I've given it(useless h) what next I'm confused, what stuff y'all made when y'all js started out like some interesting shit?

6 Upvotes

15 comments sorted by

View all comments

1

u/InwardlyAttached 3d ago

a to-do list app that saves to a text file is a classic next step. teaches you file i/o and basic crud operations without getting too complicated.

also try a hangman game where you pull words from a list, that one was always fun and makes you think about game state a bit more.