如何在python中创建一个矩形?

时间:2014-12-03 01:00:34

标签: python graphics

如何使用python中的图形包创建一个带有高度和宽度参数的矩形?

Rectangle(RecWidth,RecField);

1 个答案:

答案 0 :(得分:1)

根据文档

from graphics import *
win = GraphWin() 
rect = Rectangle(Point(20, 10), Point(10, 20))
rect.draw(win)