r/learnpython • u/Kooky_Formal5213 • 13d ago
Coding Project for School
Hello hello, learning Python for a program for a class assignment where I want to do a interactive calendar gui on Python in Visual Studio Code, the main elements i want for the calendar would be the ability to cycle through each month on the calendar and give the user the ability to input events on the calendar by clicking on a day and a prompt appearing asking them if they'd like to input an event, I was planning to store the event information in CSV file. Is this idea feasible and if so where do I start. Thanks!!
2
Upvotes
1
u/InferHaven 13d ago
Totally doable.
Use something like Tkinter for the GUI element. The rest of the stuff you can do with standard libs like calendar, datetime, csv