我正在准备一些简单的Python代码示例以在高中课程中使用它们,问题是由于学校的硬件限制,我必须使用Repl.it内联编辑器。
这个简单的代码在带有Python 3.7解释器的PyCharm中运行良好
import tkinter as tk
ventana = tk.Tk()
ventana.title("Mostrar imagen como fondo")
ventana.geometry("600x400")
imagen=tk.PhotoImage(file="forest.png")
clabel=tk.Label(image=imagen)
clabel.place(x=0,y=0)
ventana.mainloop()
Repl.it中的相同代码无法运行,显示的错误消息是“ _tkinter.TclError:无显示名和$ DISPLAY环境变量”
您可以在here
上看到代码。