我对 Python 完全陌生,我刚刚编写了一小段代码,用于在 python shell 中打印并要求输入。它就像一本日记,要求输入日期,然后打印该日期的条目。我希望将此调用和响应合并到 tkinter GUI 中的文本框中。我想知道如何让这段代码在文本框中而不是在 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")
我还想避免将此代码作为外部文件调用。我想知道如何将此代码实现到 tkinter GUI 文本框中,而不是如何检索包含此代码的文件。主要是因为它是一个如此短的程序,似乎没有必要。我在这里先向您的帮助表示感谢!