摘要:
import turtle radius = eval(input()) number = eval(input()) cl = input() turtle.pencolor(cl) turtle.goto(0,0) for i in range(number): turtle.circle(ra 阅读全文
摘要:
#红色五角星 import turtle as t t.fillcolor("red") t.begin_fill() while True: t.fd(200) t.right(144) if abs(t.pos())<1: break t.end_fill() t.done() #六角形 imp 阅读全文