I am completely new to Python, and I just wrote a short bit of code that prints and asks for input in the python shell. It works like a diary where it asks for a date and then prints the entries for that date. I was hoping to incorporate this call and response into a text box in a tkinter GUI. I am wondering how to get this bit of code to perform in the text box instead of in the python shell.
month = int(float(input("Month(MM): ")))
day = int(float(input("Day(DD): ")))
year = int(float(input("Year(YYYY): ")))
print(str(month)+"/"+str(day)+"/"+str(year))
noEntry = True
if month == 1 and day == 2 and year == 3456:
noEntry = False
print("Text")
if month == 7 and day == 8 and year == 9012:
noEntry = False
print("More Text")
if noEntry:
print("No Entry Found")
I would also like to avoid calling for this code as an outside file. I want to know how to implement this code into a tkinter GUI text box, not how to retrieve a file which contains this code. Mostly because it is such a short program and it seems unnecessary. Thanks for the help in advance!
Here is a basic Tk window that will take input for month, day and year
when you click submit it prints the month day and year and im sure you can figure it out from there
EDIT
here is an example of a text box to display the diary entry:
in this example
diary
is the diary entry string!Good Luck :)