从键盘输入半径、绘制同心圆的个数及画笔的颜色 1 import turtle 2 3 turtle.pensize(10) 4 5 r=eval(input()) 6 n=eval(input()) 7 color=input() 8 turtle.pencolor(color) 9 10 for ...
分类:
其他好文 时间:
2020-03-17 21:07:59
阅读次数:
68
1 from turtle import* 2 seth(-120) 3 for i in range(3): 4 for i in range(3): 5 fd(100) 6 left(120) 7 left(60) 8 right(60) 9 fd(100) 10 seth(-60) 11 fo ...
分类:
其他好文 时间:
2020-03-17 19:45:25
阅读次数:
58
1 from turtle import* 2 n=eval(input()) 3 a=3 4 color("blue","yellow") 5 begin_fill() 6 for i in range(n-2): 7 circle(50,steps=a) 8 fd(50) 9 a=a+1 10 ...
分类:
其他好文 时间:
2020-03-17 19:14:32
阅读次数:
65
import turtledef drawTriangle(num,len,flag flag*=-1 len/=2 if(num==1): if(flag==1): turtle.left(60) turtle.fd(len) turtle.right(120) turtle.fd(len) tu ...
分类:
其他好文 时间:
2020-03-15 21:59:50
阅读次数:
44
五角星 from turtle import * fillcolor('red') hideturtle() begin_fill() while True: forward(200) right(144) if abs(pos())<1: break end_fill() 六角形 import t ...
分类:
其他好文 时间:
2020-03-15 19:12:22
阅读次数:
82
import turtle turtle.pencolor("blue") #绘制外部大三角形 turtle.fd(200) turtle.seth(120) turtle.fd(200) turtle.seth(-120) turtle.fd(200) #绘制内部小三角形 turtle.seth( ...
分类:
其他好文 时间:
2020-03-15 15:11:50
阅读次数:
76
import turtleturtle.speed(2)turtle.penup()turtle.goto(100,100)turtle.speed(0)turtle.pendown()turtle.pensize(2)turtle.pencolor("pink")turtle.fillcolor( ...
分类:
其他好文 时间:
2020-03-15 15:11:11
阅读次数:
69
import turtle turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) tu ...
分类:
其他好文 时间:
2020-03-15 13:20:58
阅读次数:
53
import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(0,5): turtle.forward(100) turtle. ...
分类:
其他好文 时间:
2020-03-15 13:07:42
阅读次数:
80
import turtle turtle.left(30)turtle.forward(144) turtle.right(60)turtle.forward(144) turtle.right(60)turtle.forward(144) turtle.right(60)turtle.forwar ...
分类:
其他好文 时间:
2020-03-15 13:05:18
阅读次数:
50