在PyCharm上运行的简单Python代码不在Repl.it上运行

时间:2018-09-21 11:16:16

标签: python python-3.x

我正在准备一些简单的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

上看到代码。

0 个答案:

没有答案