交互模式

在Windows和Linux系统下,easygraphics可以在Python的交互环境中直接运行。

Easygraphics示例

from easygraphics import *
init_graph()
line(50,50,100,100)

close_graph()

海龟作图示例

from easygraphics.turtle import *
create_world()
fd(100)
lt(90)
close_world()

清除屏幕

如果你在交互模式下使用海龟作图,可以用clear_screen()来清除和重置海龟作图窗口。cs() / clear()是它的简写形式。

如果你在使用Easygraphics,可以使用clear_device()清除作图窗口中已绘制的内容。