python画正方形的代码是什么?

python画正方形的代码是什么?,第1张

python画正方形的代码是什么?

python画正方形的代码是什么?

python画正方形的代码是:

import turtle         #导入
turtle.title("画正方形")
turtle.pensize(5)      #画笔大小为5
turtle.pencolor("red") #画笔颜色为红
turtle.fillcolor("green")   #填充颜色为绿
turtle.begin_fill()      #开始填充
for i in range(4):       #循环四次
    turtle.forward(200)   #前进200
    turtle.left(90)      #左转90度
turtle.end_fill()       #结束填充
turtle.done()           #导入结束

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

以上就是python画正方形的代码是什么?的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/683632.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-20
下一篇 2022-04-20

发表评论

登录后才能评论

评论列表(0条)

保存