これは私のコードです:
import random
from tkinter import *
root=Tk()
a=Canvas(root, width=1000, height=1000)
a.pack()
e = Entry(root)
paralist = []
x=random.randint(1,10)
file = open("groupproject.txt")
line = file.readline()
for line in file:
paralist.append(line.replace("\n", ""));
a.create_text(500,50, text = "Typing Fun", width = 700, font = "Verdana", fill = "purple")
a.create_text(500,300, text = paralist[x], width = 700, font = "Times", fill = "purple")
#master = Tk()
#a = Entry(master)
#a.pack()
#a.focus_set()
#def callback():
# print (a.get())
root.mainloop()
コメント セクションは、段落の下にエントリ ウィジェットを出力することになっていますが、代わりにIndexError: list index out of range
lineでエラーが発生しますa.create_text(500,300, text = paralist[x], width = 700, font = "Times", fill = "purple")
。e
代わりに使用するa
と機能しますが、別のウィンドウでエントリ ウィジェットが開きます。
tkinter エントリ ウィジェットをテキストと同じウィンドウに表示しようとしています。誰かがこれを行う方法を教えてもらえますか?