随笔分类 -  python turtle

摘要:Python Turtle 画图代码样例 python 四叶草-1 import turtle as t from math import * t.penup() t.goto(0,20) t.pendown() t.setheading(-45) t.pensize(10) t.color('li 阅读全文
posted @ 2024-11-01 11:40 ppppppro 阅读(521) 评论(0) 推荐(0)
摘要:前言 该文章适合于少儿编程python turtle 课程 备课 或者 大学生接触一段时间python后使用turtle完成一些练习的效果 四色的圆 点击查看代码 import turtle turtle.color("red") #设置画笔颜色为红色 turtle.circle(100,90) # 阅读全文
posted @ 2024-08-06 17:37 ppppppro 阅读(4479) 评论(0) 推荐(0)