0

所以,我有了将一些数据打印到文本文件的基本功能。我想将这些数据放入 Tkinter 的文本框中。我遇到的问题是将所有数据保存到文件中,然后再次读取它,但它没有将其插入文本框中。当我单击计算(触发函数的按钮)时,它返回错误:

Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Python33\lib\tkinter\__init__.py", line 1475, in __call__
    return self.func(*args)
  File "D:\Python Project\Roof Pitch Calculator.py", line 52, in Calculate
    ResultsBox.insert(END, contents)
AttributeError: 'NoneType' object has no attribute 'insert'

该函数包含以下代码:

def Calculate():
    h1 = float(LongHeight.get())
    h2 = float(ShortHeight.get())
    aj = float(Width.get())
    d = float(Depth.get())

    opc = h1 - h2
    Opc_Width = opc / aj
    Radians = math.atan(opc / aj)
    Pitch = math.degrees(math.atan(opc / aj))
    Width_And_Height_Squared = (opc * opc) + (aj * aj)
    Square_Root = math.sqrt((opc * opc) + (aj * aj))
    Roof_Area = math.sqrt((opc * opc) + (aj * aj))*d

    text_file = open("temp.txt", "a")
    text_file.write("Longest Height: ")
    text_file.write(str(h1))
    text_file.write("\n")
    text_file.write("Shortest Height: ")
    text_file.write(str(h2))
    text_file.write("\n")
    text_file.write("Width: ")
    text_file.write(str(aj))
    text_file.write("\n")
    text_file.write("Depth: ")
    text_file.write(str(d))
    text_file.write("\n")
    text_file.write("Pitch: ")
    text_file.write(str(Pitch))
    text_file.write("\n")
    text_file.write("Roof Area: ")
    text_file.write(str(Roof_Area))
    text_file.write("\n")
    text_file.write("\n")
    text_file.close()

    text_file = open("temp.txt")
    contents = ""

    for i in text_file:
        contents += i

    ResultsBox.insert(END, contents)
    text_file.close()

另外,有没有办法将数据直接放入文本框,而不是放入文本文件,然后放入文本框?如果是这样,请有人告诉我该怎么做,因为我一生都无法弄清楚。

编辑:这是完整的代码:

from tkinter import *
from tkinter.ttk import *
import math, os

try:
    os.remove("temp.txt")
except OSError:
    pass

def Calculate():
    h1 = float(LongHeight.get())
    h2 = float(ShortHeight.get())
    aj = float(Width.get())
    d = float(Depth.get())

    opc = h1 - h2
    Opc_Width = opc / aj
    Radians = math.atan(opc / aj)
    Pitch = math.degrees(math.atan(opc / aj))
    Width_And_Height_Squared = (opc * opc) + (aj * aj)
    Square_Root = math.sqrt((opc * opc) + (aj * aj))
    Roof_Area = math.sqrt((opc * opc) + (aj * aj))*d

    text_file = open("temp.txt", "a")
    text_file.write("Longest Height: ")
    text_file.write(str(h1))
    text_file.write("\n")
    text_file.write("Shortest Height: ")
    text_file.write(str(h2))
    text_file.write("\n")
    text_file.write("Width: ")
    text_file.write(str(aj))
    text_file.write("\n")
    text_file.write("Depth: ")
    text_file.write(str(d))
    text_file.write("\n")
    text_file.write("Pitch: ")
    text_file.write(str(Pitch))
    text_file.write("\n")
    text_file.write("Roof Area: ")
    text_file.write(str(Roof_Area))
    text_file.write("\n")
    text_file.write("\n")
    text_file.close()

    text_file = open("temp.txt")
    contents = ""

    for i in text_file:
        contents += i

    ResultsBox.insert(END, contents)
    text_file.close()

    ShortHeight.set("")
    LongHeight.set("")
    Depth.set("")
    Width.set("")


window = Tk()
window.geometry("600x400+200+200")
window.title("Roof Pitch Calculator")
window.wm_resizable(0,0)

TitleLabel = Label(window, font = "Comic 30", foreground = "deep sky blue", text = "Roof Pitch Calculator").pack()

CalculateButton = Button(window, text = "Calculate", command = Calculate).pack(side = BOTTOM, pady = 5)
ResultsBox = Text(window, height = 13, width = 70).pack(side = BOTTOM)
ShortHeightLabel = Label(window, text = "Short Height").place(x = 190, y = 50)
LongHeightLabel = Label(window, text = "Long Height").place(x = 330, y = 50)
DepthLabel = Label(window, text = "Depth").place(x = 207, y = 100)
WidthLabel = Label(window, text = "Width").place(x = 345, y = 100)

ShortHeight = StringVar()
ShortHeightEntry = Entry(window, textvariable = ShortHeight)
ShortHeightEntry.place(x = 161, y = 71)

LongHeight = StringVar()
LongHeightEntry = Entry(window, textvariable = LongHeight)
LongHeightEntry.place(x = 300, y = 71)

Depth = StringVar()
DepthEntry = Entry(window, textvariable = Depth)
DepthEntry.place(x = 161, y = 120)

Width = StringVar()
WidthEntry = Entry(window, textvariable = Width)
WidthEntry.place(x = 300, y = 120)

window.mainloop()
4

1 回答 1

1

您正在分配 to 的结果.pack()ResultsBox尝试分两行执行:

ResultsBox = Text(window, height = 13, width = 70)
ResultsBox.pack(side = BOTTOM)

此外,您不需要编写文本文件然后重新打开它来加载内容。我会使用一个列表来存储内容,然后我会使用该列表来保存和填充文本框:

contents_list = ["Longest Height: ",
                 str(h1),
                 "\n",
                 ...]
contents = "".join(contents_list)
text_file.write(contents)
ResultsBox.insert(END, contents)
于 2013-09-30T22:29:36.667 回答