import turtle as t n = eval(input()) t.penup() t.goto(-350,0) t.pendown() t.pensize(2) t.color("blue","yellow") t.begin_fill() for i in range(3,n): t.circle(50, steps=i) t.fd(100) else: t.circle(50) t.end_fill() t.hideturtle() t.done()

import turtle as t n = eval(input()) t.penup() t.goto(-350,0) t.pendown() t.pensize(2) t.color("blue","yellow") t.begin_fill() for i in range(3,n): t.circle(50, steps=i) t.fd(100) else: t.circle(50) t.end_fill() t.hideturtle() t.done()

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。