【Python基础知识-pycharm版】海龟绘图_坐标系问题_画笔各种方法_画出奥运五环图

Python006

  • [Python IDLE(shell清屏配置方法)](https://blog.csdn.net/tb_youth/article/details/89609560)
  • 开始学习图形化程序设计
  • 绘制奥运五环标记

Python IDLE(shell清屏配置方法)

开始学习图形化程序设计

>>> import turtle #导入turtle 模块 
>>> turtle.showturtle() #显示箭头 
>>> turtle.write("高淇") #写字符串 
>>> turtle.forward(300) #前进 300 像素 
>>> turtle.color("red") #画笔颜色改为red 
>>> turtle.left(90) #箭头左转 90 度 
>>> turtle.forward(300) 
>>> turtle.goto(0,50) #去坐标(0,50) 
>>> turtle.goto(0,0) 
>>> turtle.penup() #抬笔。这样,路径就不会画出来 
>>> turtle.goto(0,300) 
>>> turtle.pendown() #下笔。这样,路径就会画出来 
>>> turtle.circle(100) #画圆

绘制奥运五环标记

#源码
#绘制奥运五环
import turtle

turtle.width(10)

turtle.color("blue")
turtle.circle(50)

turtle.penup()
turtle.goto(120,0)
turtle.pendown()
turtle.color("black")
turtle.circle(50)

turtle.penup()
turtle.goto(240,0)
turtle.pendown()
turtle.color("red")
turtle.circle(50)

turtle.penup()
turtle.goto(60,-50)
turtle.pendown()
turtle.color("yellow")
turtle.circle(50)

turtle.penup()
turtle.goto(180,-50)
turtle.pendown()
turtle.color("green")
turtle.circle(50)

运行结果
【Python基础知识-pycharm版】海龟绘图_坐标系问题_画笔各种方法_画出奥运五环图_第1张图片

你可能感兴趣的:(python)