python turtle库绘图

import turtle as x
x.setup(800,800)
x.color("yellow")
x.pensize(30)
x.circle(150)
x.penup()
x.goto(-100,300)
x.pendown()
x.right(90)
x.forward(300)
x.left (90)
x.forward (170)
x.left (90)
x.forward (20)
x.left(90)
x.forward (150)
x.right(90)
x.forward (280)
x.left(90)
x.forward (20)
x.penup ()
x.goto(-200,-100)
x.pendown()
x.left(90)
x.forward(200)
x.left(90)
x.forward(50)
x.penup()
x.goto(0,-300)
x.pendown()
x.circle (100)
x.penup ()
x.goto(200,-100)
x.pendown()
x.right(90)
x.forward(200)
x.left(90)
x.forward(50)

点此观看视频

 

posted @ 2018-11-13 21:45  LittleBrid  阅读(211)  评论(0编辑  收藏  举报