Python3-2020-测试开发-2- Python3之turtle模块使用

Posted csjin-study

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3-2020-测试开发-2- Python3之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)

以上是关于Python3-2020-测试开发-2- Python3之turtle模块使用的主要内容,如果未能解决你的问题,请参考以下文章

Python3-2020-测试开发-2- Python3之turtle模块使用

Python3-2020-测试开发-8- 字典dict

Python3-2020-测试开发-8- 字典dict

Python3-2020-测试开发-20- 面向对象之封装,继承,多态

Python3-2020-测试开发-5- 基本运算符和复合运算符

Python3-2020-测试开发-20- Python中装饰器@property