Нужно в то, что есть добавить чтобы можно было выбрать дату и месяц рождения и ввести год рождения вручную в стиле "". Желательно добавить кнопку инструкция которая будет нажиматься и открываться текст(его я сам напишу). И по итогу чтобы все сохранялось в файл txt. (это тоже не обязательно, но желательно) (Работа делается для Spyder)
from tkinter import *
from tkinter.ttk import *
window = Tk()
window.title("Program")
window.geometry('600x600')
text=Label(window, text="Hello! Enter your name:", font=("Arial Bold", 30))
text.grid(column=0, row=0)
txt = Entry(window, width=10)
txt.grid(column=0, row=1)
def clicked():
res="Welcome to the game " +txt.get()
text.configure(text=res)
btn = Button(window, text="Save", command=clicked)
btn.grid(column=0, row=2)
text1=Label(window, text="Input your age", font=("Arial Bold", 30))
text1.grid(column=0, row=3)
combo = Combobox(window)
combo ['values']= (14, 15, 16, 17, 18)
combo.current(1)
combo.grid(column=0, row=4)
text2=Label(window, text="I agree, that I will fail this game", font=("Arial Bold", 30))
text2.grid(column=0, row=5)
chk_state = BooleanVar()
chk_state.set(False)
chk = Checkbutton(window, text='Choose', var=chk_state)
chk.grid(column=1, row=5)
window.mainloop()