Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
135 views
in Technique[技术] by (71.8m points)

python - I am building a GUI for my app but get errors. Why?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your problem is you put None in your variable enter_mess_here here:

enter_mess_here = tk.Entry(root).pack() #getting error here

and in your function when you want to get the value it's not getting value from Entry it's getting from Nothing. So it raises an error.

First assign your Entry to a variable then use pack, so this will work:

enter_mess_here = tk.Entry(root)
enter_mess_here.pack()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...