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

.pack()toの結果を割り当ててResultsBoxいます。2行で実行してみてください。

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 に答える