Python如何画一个红色五角星?#Python2022-04-18 08:56分类:Python 0 条评论 请先 登录 后评论 默认排序 时间排序 1 个回答|241 次阅读 2022-04-18 08:58 Coco老师 - 官方公众号:青少儿编程学习网 擅长:编程教育 • 网站:https://kidscodes.cn/from turtle import *fillcolor("red")begin_fill()while True: forward(200) right(144) if abs(pos()) < 1: breakend_fill()结果: 请先 登录 后评论