码迷,mamicode.com
首页 > 编程语言 > 详细

Python用turtle模块画图

时间:2018-05-03 19:40:19      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:python   turtle   模块画图   

学习使用模块turtle画图功能,主要记住几个参数
import turtle #导入turtle画图模块
turtle.showturtle() #调出turtle画板
turtle.forward(100) #坐标前进100个位置
turtle.penup() #画图的画笔抬起
turtle.goto(200,0) #坐标移动到x=200,y=0的位置
turtle.pendown() #画笔放下,可以开始画出图案
turtle.circle(100) #画出直径100像素的圆

Python用turtle模块画图

标签:python   turtle   模块画图   

原文地址:http://blog.51cto.com/xpqinqun/2112266

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!