当前位置:Gxlcms > Python > Python如何绘制长方形

Python如何绘制长方形

时间:2021-07-01 10:21:17 帮助过:1568人阅读

用python绘制长方形的基本步骤:

首先先下载安装好python程序。

在我们自己的电脑上找到python 的IDLE工具。

2.然后打开IDLE,新建一个文件,命名为test1.py

相关推荐:《python视频教程》

3.接着我们就开始编辑代码了,首先我们要明确用到的函数有turtle.left、turtle.right和turtle.forward函数。代码如下:

import turtle
turtle.left(90)
turtle.forward(100)

先叫出龟,左转90,直行100

turtle.right(90)
turtle.forward(150)
turtle.right(90)
turtle.forward(100)
turtle.right(90)
turtle.forward(150)

右转,直行,右转,直行,就OK啦。

角度没什么都是90度。

运行结果

1560238574(1).png

以上就是Python如何绘制长方形的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行