摘要: import turtle turtle.showturtle() 显示箭头,并绘制第一个300 300的矩形 turtle.goto(300,0) turtle.goto(300,300) turtle.goto(0,300) turtle.goto(0,0) turtle.penup() 绘制第 阅读全文
posted @ 2019-12-22 19:43 青年小白学编程 阅读(1010) 评论(0) 推荐(0)
摘要: import turtle turtle.width(10) turtle.color("bolue") turtle.circle(50) turtle.color("black") turtle.penup() turtle.goto(120,0) turtle.pendown() turtle 阅读全文
posted @ 2019-12-22 19:19 青年小白学编程 阅读(391) 评论(0) 推荐(0)
摘要: imrort turtle 导入turtle模块 turtle.showturtle() 显示箭头 turtle.write("Frank") 写字符串 turtle.forward(300) 前进300像素 turtle.color("red") 画笔颜色给为红色 turtle.left(90) 阅读全文
posted @ 2019-12-22 19:10 青年小白学编程 阅读(216) 评论(0) 推荐(0)