import turtle turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.right(144) turtle.forward(100) tu... ...
分类:
其他好文 时间:
2018-05-09 22:42:39
阅读次数:
166
import turtle turtle.pencolor('red') turtle.fillcolor('yellow') turtle.begin_fill() while True: turtle.forward(100) turtle.right(25) if(abs(turtle.pos... ...
分类:
其他好文 时间:
2018-05-09 22:42:30
阅读次数:
169
import turtle turtle.pencolor('yellow') turtle.fillcolor('green') turtle.begin_fill() while True: turtle.forward(100) turtle.right(155) if (abs(turtle... ...
分类:
其他好文 时间:
2018-05-09 22:41:03
阅读次数:
123
import turtle # 设置初始位置 turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) # 花蕊 turtle.fillcolor("red") turtle.begin_fill(... ...
分类:
其他好文 时间:
2018-05-09 22:36:43
阅读次数:
156
import turtle turtle. pencolor('blue') turtle. fillcolor('purple') turtle.begin_fill() while True: turtle. forward(100) turtle. right (150) if abs(tur... ...
分类:
其他好文 时间:
2018-05-09 22:35:58
阅读次数:
181
import turtle turtle.pencolor('pink') turtle.fillcolor('pink') turtle.begin_fill() for i in range(5): turtle.forward(100) turtle.right(144) turtle.end... ...
分类:
其他好文 时间:
2018-05-09 22:33:41
阅读次数:
160
import turtle #画一个五角星 turtle.bgcolor('red') turtle.pencolor('yellow') turtle.fillcolor('yellow') turtle.begin_fill() for i in range(5): turtle.forward ...
分类:
其他好文 时间:
2018-05-09 21:33:09
阅读次数:
186
import turtle turtle.pencolor('blue') turtle.fillcolor('red') turtle.begin_fill() while True: turtle.forward(100) turtle.right(50) if abs(turtle.posit... ...
分类:
其他好文 时间:
2018-05-09 21:31:02
阅读次数:
221
import turtle turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) turtle.fillcolor("red") turtle.begin_fill() turtle.circl... ...
分类:
其他好文 时间:
2018-05-09 21:30:53
阅读次数:
186
mynumber=50 while True: guess=float(input('请输入一个数字')) if guess>mynumber: print('数字猜大了') elif guess<mynumber: print('数字猜小了') else: print('恭喜你猜对了') brea... ...
分类:
其他好文 时间:
2018-05-09 21:04:20
阅读次数:
146