当前位置:   article > 正文

python编程之路_2(简单的turtle)_import turtleturtle.speed(10)turtle.color("red","y

import turtleturtle.speed(10)turtle.color("red","yellow")turtle.begin_fi

图形化程序设计---------turtle

import turtle----------导入turtle

turtle.showturtle()----------显示画笔

turtle.hideturtle()----------隐藏画笔

turtle.speed(数值)----------画笔的速度

turtle.pensize(数值)----------画笔的大小

turtle.color(“颜色”)----------画笔的颜色

turtle.forward(数值)----------画笔向箭头的方向移动

turtle.backward(数值)----------画笔向箭头的反方向移动

turtle.left(角度)----------向左调整角度

turtle.right(角度)----------向右调整角度

turtle.goto(坐标)----------画笔到指定坐标

turtle.penup()----------抬起画笔,不会在画布上留下痕迹

turtle.pendown()----------落下画笔,开始画画

turtle.circle(半径)----------画一个圆

绘画五环的代码

import turtle

turtle.speed(10)
turtle.pencolor("blue")
turtle.pensize(10)
turtle.circle(50)

turtle.penup()
turtle.goto(120,0)
turtle.pendown()

turtle.pencolor("black")
turtle.circle(50)

turtle.penup()
turtle.goto(242,0)
turtle.pendown()

turtle.pencolor("red")
turtle.circle(50)

turtle.penup()
turtle.goto(60,-50)
turtle.pendown()

turtle.pencolor("yellow")
turtle.circle(50)

turtle.penup()
turtle.goto(180,-50)
turtle.pendown()

turtle.pencolor("green")
turtle.circle(50)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

在这里插入图片描述

在使用turtle的过程中,碰到的问题。

程序运行出现错误,提示:AttributeError: module ‘turtle’ has no attribute ‘color’

解决方法:新建了turtle.py的文件,删掉就可以了

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/117092
推荐阅读
相关标签
  

闽ICP备14008679号