赞
踩
from turtle import * speed(9) color('red', 【1】) 【2】 pendown() left(135) fd(100) right(180) circle(50, -180) left(90) circle(50, -180) right(180) fd(100) end_fill() hideturtle() done()
答案如下:
color('red', 【1】) \\ 答案: color('red', 'pink')
【2】 \\ 答案:begin_fill
运行结果:
from turtle import *
【1】
goto(-100, 50)
pendown()
color("red")
begin_fill()
for i in range(5):
forward(200)
【2】
end_fill()
hideturtle()
答案如下:
【1】 # 答案:pencolor("red")
【2】 # 答案:right(144)
运行结果:
import turtle
n = 10
for i in range(1, 10, 1):
for j in [90, 180, -90, 0]:
turtle.seth(【1】)
turtle.fd(【2】)
n += 5
答案如下:
turtle.seth(【1】) # turtle.seth(j)
turtle.fd(【2】) # turtle.fd(n)
运行结果:
import turtle
turtle.penup()
turtle.fd(-350)
turtle.pendown()
def DrawLine(【1】):
for angle in [0, 90, -90, -90, 90]:
turtle.left(angle)
turtle.fd(size)
for i in [20, 30, 40, 50, 40, 30, 20]:
【2】
turtle.hideturtle()
turtle.done()
答案如下:
def DrawLine(【1】): # 答案:def DrawLine(size):
【2】 # 答案:DrawLine(i)
运行结果:
【1】
def DrawCctCircle(n):
t.penup()
t.goto(0, -n)
t.pendown()
【2】
for i in range(20, 100, 20):
DrawCctCircle(i)
答案如下:
【1】 # 答案:import turtle as t
【2】 # 答案:t.circle(n, 360)
运行结果:
import turtle as t # t.setup(500, 300) t.speed(9) t.penup() 【1】 # 将画笔移到绝对位置(-180, -50)处 【2】# 画笔落下 def Drawrect(): t.fd(40) t.left(90) t.fd(120) t.left(90) t.fd(40) t.left(90) t.fd(120) t.penup() t.left(90) t.fd(42) t.pendown() for i in range(7): Drawrect() t.penup() t.goto(-150, 0) t.pendown() def DrawRectBlack(): t.color('black') t.begin_fill() t.fd(30) t.left(90) t.fd(70) t.left(90) t.fd(30) t.left(90) t.fd(70) t.end_fill() t.penup() t.left(90) t.fd(40) t.pendown() DrawRectBlack() DrawRectBlack() t.penup() t.fd(48) t.pendown() DrawRectBlack() DrawRectBlack() DrawRectBlack() t.hideturtle() t.done()
答案如下:
import turtle as t t.setup(500, 300) t.speed(9) t.penup() t.goto(-180, -50) t.pendown() def Drawrect(): t.fd(40) t.left(90) t.fd(120) t.left(90) t.fd(40) t.left(90) t.fd(120) t.penup() t.left(90) t.fd(42) t.pendown() for i in range(7): Drawrect() t.penup() t.goto(-150, 0) t.pendown() def DrawRectBlack(): t.color('black') t.begin_fill() t.fd(30) t.left(90) t.fd(70) t.left(90) t.fd(30) t.left(90) t.fd(70) t.end_fill() t.penup() t.left(90) t.fd(40) t.pendown() DrawRectBlack() DrawRectBlack() t.penup() t.fd(48) t.pendown() DrawRectBlack() DrawRectBlack() DrawRectBlack() t.hideturtle() t.done()
运行结果:
import turtle 【1】# 将画笔宽度设置为2像素 turtle.color('red') 【2】# 向小海龟当前前行方向前进160像素 turtle.seth(120) turtle.fd(160) turtle.seth(-120) turtle.fd(160) turtle.penup() turtle.seth(0) turtle.fd(80) turtle.pendown() turtle.seth(60) turtle.fd(80) turtle.seth(180) turtle.fd(80) turtle.seth(-60) turtle.fd(80)
答案如下:
【1】# turtle.width(2)
【2】# turtle.fd(160)
运行结果如下:
import turtle as t
# t.colormode(255)
t.color(【1】) # 设置颜色取值为金色(255,215,0)
t.begin_fill()
for x in range(【2】):
t.forward(200)
t.left(225)
t.end_fill()
答案如下:
import turtle as t
t.colormode(255)
t.color((255,215,0), (255, 215, 0)) # 设置颜色取值为金色(255,215,0)
t.begin_fill()
for x in range(8):
t.forward(200)
t.left(225)
t.end_fill()
运行结果:
from turtle import *
for i in range(5):
【1】# 画笔抬起
goto(-200 + 100 * i, -50)
pendown()
【2】(40, steps=3+i) # 绘制某个形状
done()
hideturtle()
答案如下:
from turtle import *
for i in range(5):
penup() # 【1】# 画笔抬起
goto(-200 + 100 * i, -50)
pendown()
circle(40, steps=3+i) # 绘制某个形状
done()
hideturtle()
运行结果:
import turtle as t def tree(length, 【1】): # 树的层次 if level <= 0: return t.forward(【2】) # 前进方向画length距离 t.left(45) tree(0.6 * length, level - 1) t.right(90) tree(0.6 * length, level - 1) t.left(45) t.backward(length) return t.pensize(3) t.color('green') t.left(90) tree(100, 6)
答案如下:
import turtle as t def tree(length, level): # 树的层次 if level <= 0: return t.forward(length) # 前进方向画length距离 t.left(45) tree(0.6 * length, level - 1) t.right(90) tree(0.6 * length, level - 1) t.left(45) t.backward(length) return t.pensize(3) t.color('green') t.left(90) tree(100, 6)
运行结果:
参考文章:
题目参考
题目参考
turtle库知识点参考
turtle库知识点参考
turtle库知识点参考
五角星的角度计算
seth()函数参考
绘制同心圆参考
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。