forked from geekcomputers/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
You can obtain calendaer only by putting month and year in GUI.
- Loading branch information
1 parent
ebfd55d
commit b92fe4c
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
from tkinter import * | ||
import calendar | ||
|
||
root = Tk() | ||
# root.geometry("400x300") | ||
root.title("Calendar") | ||
|
||
# Function | ||
|
||
def text(): | ||
month_int = int(month.get()) | ||
year_int = int(year.get()) | ||
cal = calendar.month(year_int, month_int) | ||
textfield.delete(0.0, END) | ||
textfield.insert(INSERT, cal) | ||
|
||
|
||
# Creating Labels | ||
label1 = Label(root, text="Month:") | ||
label1.grid(row=0, column=0) | ||
|
||
label2 = Label(root, text="Year:") | ||
label2.grid(row=0, column=1) | ||
|
||
# Creating spinbox | ||
month = Spinbox(root, from_=1, to=12, width=8) | ||
month.grid(row=1, column=0, padx=5) | ||
|
||
year = Spinbox(root, from_=2000, to=2100, width=10) | ||
year.grid(row=1, column=1, padx=10) | ||
|
||
# Creating Button | ||
button = Button(root, text="Go", command=text) | ||
button.grid(row=1, column=2, padx=10) | ||
|
||
# Creating Textfield | ||
textfield = Text(root, width=25, height=10, fg="red") | ||
textfield.grid(row=2, columnspan=2) | ||
|
||
|
||
root.mainloop() |