• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
December 27, 2021 |12.6K Views
GUI Calender Using Tkinter in Python
  Share  8 Likes
Description
Discussion

Python is a high-level language general-purpose programming language. It supports large communities worldwide, so it becomes easy to make projects on Python because it has thousands of libraries to make things easy and convenient for your project. It offers multiple options for developing a GUI Application one of the most popular libraries is Tkinter which makes it fast and easiest way to create GUI applications. In this Python Project, we are going to make GUI Application for the calendar. While making this project we will learn Tkinter functions like creating windows, frames, widgets, titles, labels, grids, text fields, taking inputs, buttons, and applying the event. And in the Calendar library, we will learn how to get the months for respective years. We will use the Tkinter library for GUI Application and to view the calendar we will use the Calendar library. Both libraries are built-in types, so we don't need to install this library. The basic concept of this project is whenever we enter any year as an input then the code will display the Calender of the respective years.

Related Article : https://www.geeksforgeeks.org/python-gui-calendar-using-tkinter/

Read More