1

これは私のコードです:

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 rangelineでエラーが発生しますa.create_text(500,300, text = paralist[x], width = 700, font = "Times", fill = "purple")e代わりに使用するaと機能しますが、別のウィンドウでエントリ ウィジェットが開きます。

tkinter エントリ ウィジェットをテキストと同じウィンドウに表示しようとしています。誰かがこれを行う方法を教えてもらえますか?

4

2 に答える 2

2

最初に、

paralist = [] リストは空なので、リストには何もないため、1 から 10 までのランダムな単語は間違っています。

master = Tk() # since Tk() is already assigned to root this will make a new window
a = Entry(master) # a is already assigned to canvas
a.pack() # this is already declare under a=canvas
a.focus_set()
def callback():
    print (a.get())

編集:

あなたのファイルに問題があるのではないかと思います。このコード:

import random
from tkinter import *

root = Tk()

a = Canvas(root, width = 400, height = 400)
a.pack()
e = Entry(root)
e.pack()

paralist = []

x = random.randint(1,10)

file = open("teste.txt")
line = file.readline()

for line in file:
    paralist.append(line.replace("\n", ""));

a.create_text(200,50, text = "Typing Fun", width = 700, font = "Verdana", fill = "purple")
a.create_text(200,300, text = paralist[x], width = 700, font = "Times", fill = "purple")

b = Entry(root)
b.pack()
b.focus_set()

def callback():
    print (a.get()) 

root.mainloop()

これを「teste.txt」として:

test0
test1
test2
test3
test4
test5
test6
test7
test8
test9
test10

私にとってはうまくいきます。

于 2013-06-01T22:14:16.340 に答える
0
import tkinter
window = tkinter. Tk()
window.geometry('200x200')
ent= tkinter.Entry(window)
ent.pack()

これは、tkinter で行う最も簡単な方法です。他に何か必要な場合は、私に聞いてください:)

于 2013-12-16T17:44:22.580 に答える