摘要: from turtle import * fillcolor("red") begin_fill() while True: forward(200) right(144) if abs(pos()) < 1: break end_fill() 阅读全文
posted @ 2025-02-25 09:41 cchb 阅读(10) 评论(0) 推荐(0)
摘要: from turtle import * color('red', 'yellow') begin_fill() while True: forward(200) right(170) if abs(pos()) < 1: break end_fill() done() 阅读全文
posted @ 2025-02-25 09:31 cchb 阅读(12) 评论(0) 推荐(0)
摘要: ![](https://img2024.cnblogs.com/blog/3608886/202502/3608886-20250225090738647-1595187154.png) 阅读全文
posted @ 2025-02-25 09:25 cchb 阅读(12) 评论(0) 推荐(0)