几百年前,有个西方人听一个印度教徒说地球处在一只乌龟的背上。被问到这只乌龟站在什么东西上时,印度教徒解释说:“一直往下,全是乌龟。”
Python官网上说turtle module is
“An educational framework for simple graphics applications."
https://docs.python.org/3/library/turtle.html#module-turtle
编写并运行一个函数来画出72个正方形,并且每画一个就右转5度。要用循环实现!你的结果应该类似于这样:
参考代码
from turtle import *
shape("turtle")
speed(0) # speed(0)是最慢速度
def square(edge):
for i in range(4):
forward(edge)
right(90)
# square(100)
for i in range(72):
square(150)
right(5)
done()
编写一个triangle()函数,根据给定的边长画出一个等边三角形。
from turtle import *
shape("turtle")
def triangle(side=100):
for i in range(3):
forward(side)
right(120) # 等边三角形外角的度数
triangle(200)
done()
编写一个polygon()函数,根据给定的边长和边数画出一个多边形。
代码如下(示例):
from turtle import *
shape("turtle")
def polygon(side=100, sides=6):
for i in range(sides):
# 多边形的内角和等于(N-2)x180
angle=180-(sides-2)*180/sides
forward(side)
right(angle) # 外角的度数
polygon(100, 5)
done()
编写并运行一个函数来画出72个正方形,并且每画一个就右转5度,并增大边长。边长从5开始,每画一个正方形边长递增5。画好的图形应该类似于这样:
代码如下(示例):
from turtle import *
# shape("turtle")
speed(0) # speed(0)是最慢速度
def square(edge):
for i in range(4):
forward(edge)
right(90)
# square(100)
side_length = 20
for i in range(73):
square(side_length)
right(5)
side_length += 5
done()
首先编写并运行一个函数来画五角星。画好的图形应该类似于这样:
接下来,编写名为starSpiral()的函数,画出下面这样的五角星螺旋:
from turtle import *
# shape("turtle")
speed(0) # speed(0)是最慢速度
# pentagram
# 正五角星的角尖是36度,拐度是108度。
def star(side=100):
for i in range(5):
angle=180-36
forward(side)
right(angle)
# star(200)
side_length = 20
for i in range(73):
star(side_length)
right(5)
side_length += 5
done()
如果你在网上搜索“python turtle”,就可以找到Python官方网站上的turtle模块文档,https://docs.python.org/3/library/turtle.html#module-turtle。
你能在该页面上找到所有的turtle方法,
https://docs.python.org/3/library/turtle.html#turtle-methods