刚开始学Python,画个玫瑰花练练手,正好今天也是情人节
我自认为还是挺好看的,感觉比我搜到的那几个画出来的强
代码如下
import turtle as t t.setup(1100,1000) t.hideturtle() t.speed(11) t.penup() t.goto(50,-450) t.pensize(5) t.pencolor("black") t.seth(140) t.pendown() t.speed(10) t.circle(-300,60) t.fd(100) #jiaodu80 #1ye t.seth(10) t.fd(50) t.fillcolor("green") t.begin_fill() t.right(40) t.circle(120,80) t.left(100) t.circle(120,80) t.end_fill() t.seth(10) t.fd(90) t.speed(11) t.penup() t.fd(-140) t.seth(80) #2ye t.pendown() t.speed(10) t.fd(70) t.seth(160) t.fd(50) t.fillcolor("green") t.begin_fill() t.right(40) t.circle(120,80) t.left(100) t.circle(120,80) t.end_fill() t.seth(160) t.fd(90) t.speed(11) t.penup() t.fd(-140) t.seth(80) t.pendown() t.speed(10) # t.fd(100) #1ban t.seth(-20) t.fillcolor("crimson") t.begin_fill() t.circle(100,100) t.circl
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758