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

python:小乌龟turtle

时间:2017-04-12 04:22:07      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:ges   函数   border   执行函数   log   pytho   意思   画布   圆形   

  turtle的意思是乌龟,也是python中自带的图形函数,使用turtle的方法也很形象,就好像在画布上有一个小乌龟(在画布上是一个箭头),然后你可以让它动来动去,它经过的地方就被留下了记号。

  例如画一个正方形:

 def drawSqure(x):
    turtle.forward(x) # 让乌龟向前走x距离
    turtle.right(90)  # 让乌龟向右转90°
    turtle.forward(x)
    turtle.right(90)
    turtle.forward(x)
    turtle.right(90)
    turtle.forward(x)
drawSqure(100) #执行函数

技术分享

  画一个圆形:

turtle.circle(100)  

  画一个点:

turtle.dot(10)

 

python:小乌龟turtle

标签:ges   函数   border   执行函数   log   pytho   意思   画布   圆形   

原文地址:http://www.cnblogs.com/whlook/p/6696271.html

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