码迷,mamicode.com
首页 > 其他好文 > 详细

记录day2补充

时间:2017-06-14 02:29:18      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:blog   pre   正方形   好玩的   记录   imp   div   tle   log   

看到turtle模块,其实挺好玩的,所以就把写的东西搬过来,虽然都很蠢,但是自己还是想记录一下的

 

画一个等边的直角三角形

 1 import turtle
 2 import math
 3 bob = turtle.Turtle()
 4 # print(bob)
 5 bob.fd(100)
 6 bob.lt(90)
 7 bob.fd(100)
 8 bob.lt(135)
 9 bob.fd(math.sqrt(100**2+100**2))
10 turtle.mainloop()

 

画一个正方形

 1 import turtle
 2 import math
 3 bob = turtle.Turtle()
 4 # print(bob)
 5 bob.fd(100)
 6 bob.lt(90)
 7 bob.fd(100)
 8 bob.lt(90)
 9 bob.fd(100)
10 bob.lt(90)
11 bob.fd(100)
12 # bob.fd(math.sqrt(100**2+100**2))
13 turtle.mainloop()

 

正方形用循环版(终于能让我用循环了)

1 import turtle
2 import math
3 bob = turtle.Turtle()
4 # print(bob)
5 for i in range(4):
6     bob.fd(100)
7     bob.lt(90)
8 # bob.fd(math.sqrt(100**2+100**2))
9 turtle.mainloop()

 

有些困了,其实之前也有做过这些练习,后面有一个小坑,也许是大坑吧,明天继续

记录day2补充

标签:blog   pre   正方形   好玩的   记录   imp   div   tle   log   

原文地址:http://www.cnblogs.com/onhacker/p/7004525.html

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