盾牌
作者:斑码刘宇轩
运行
清除
全屏运行
终端打印输出区
点赞(2)
收藏 (1)
浏览量(5733)
改编作品
我也要学编程
留 言
©2020. LLC. All rights reserved.来编程
import turtle def circle(x,y,r,color): turtle.goto(x,y) turtle.color(color,color) turtle.begin_fill() turtle.circle(r) turtle.end_fill() def wjx(x,y,l,color): turtle.goto(x,y) turtle.color(color, color) turtle.begin_fill() for i in range(5): turtle.forward(l) turtle.right(144) turtle.end_fill() circle(0,-200,200,'red') circle(0,-150,150,'white') circle(0,-100,100,'red') circle(0,-50,50,'blue') wjx(-40,12,90,"white")