python_画图源码

import turtle

t = turtle.Pen()

t.speed(1)

t.pensize(1)

 

t.penup()

t.goto(10, 0)

t.pendown()

t.color("red")

t.begin_fill()

t.fillcolor("red")

t.circle(50)

t.end_fill()

 

 

t.penup()

t.goto(60, 50)

t.pendown()

t.color("blue")

t.begin_fill()

t.fillcolor("blue")

t.circle(50)

t.end_fill()

 

t.penup()

t.goto(110, 100)

t.pendown()

t.color("yellow")

t.begin_fill()

t.fillcolor("yellow")

t.circle(50)

t.end_fill()

 

t.penup()

t.goto(160, 150)

t.pendown()

t.color("violet")

t.begin_fill()

t.fillcolor("violet")

t.circle(50)

t.end_fill()

 

t.pensize(15)

t.color("brown")

t.penup()

t.goto(197, 227)

t.pendown()

t.goto(-160, -110)

python_画图源码_第1张图片python_画图源码_第2张图片

import turtle

\# 创建画笔

t = turtle.Pen()

t.speed(1)

t.pensize(10)

t.color("blue")

t.penup()

t.goto(-80, 0)

t.pendown()

t.circle(80)

 

t.penup()

t.goto(40, 0)

t.pendown()

t.color("black")

t.circle(80)

 

t.penup()

t.goto(160, 0)

t.pendown()

t.color("red")

t.circle(80)

 

t.penup()

t.goto(-50, -110)

t.pendown()

t.color("yellow")

t.circle(80)

 

t.penup()

t.goto(90, -110)

t.pendown()

t.color("green")

t.circle(80)

 

input()

你可能感兴趣的:(python,python)