我正在尝试将文本框小部件放在屏幕上
我正在使用文本框来显示我的程序的输出。文本框必须放在屏幕的右侧
我的代码
import Tkinter
main_window=Tkinter.Tk()
text_widget = tkinter.Text(main_window)
text_widget.insert(INSERT, "text message will display here")
text_widget.pack(anchor = "w", padx = 50, pady = 50)
main_window.mainloop()
但我的问题是文本框在屏幕上不可见。如何解决这个问题?
谢谢