python 画奥运五环

#绘制奥运五环

import turtle
#导入turtle包

turtle.width(15)
#定义线条宽度为15

turtle.color("red")
turtle.circle(50)
turtle.penup()
#定义颜色,园半径,抬笔

turtle.goto(120,0)
turtle.pendown()
#定义线条走向,落笔

turtle.color("green")
turtle.circle(50)
turtle.penup()


turtle.goto(240,0)
turtle.pendown()

turtle.color("orange")
turtle.circle(50)
turtle.penup()

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

turtle.circle(50)
turtle.penup()

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

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

代码运行效果如下图所示:

在这里插入图片描述

 

总结

关于用python画个奥运五环(附完整代码)的文章就介绍至此,更多相关python奥运五环内容请搜索编程宝库以前的文章,希望以后支持编程宝库

面向对象三大特征:封装、继承、多态。 1、封装(提高程序的安全性)class Car: def __init__(self,brand): self.brand=brand def start( ...