当前位置 : 主页 > 编程语言 > python >

用python写一个简单的表白代码

来源:互联网 收集:自由互联 发布时间:2022-06-18
from turtle import * color ( 'black' , 'red' ) begin_fill () penup () goto ( 50 , 50 ) pendown () right ( 45 ) goto ( 100 , 0 ) left ( 90 ) fd ( 120 ) circle ( 50 , 225 ) penup () goto ( 0 , 0 ) pendown () left ( 135 ) fd ( 120 ) circle ( 5


from turtle import *

color('black','red')
begin_fill()

penup()
goto (50,50)
pendown()

right(45)
goto(100,0)
left(90)
fd(120)
circle(50,225)

penup()
goto(0,0)
pendown()

left(135)
fd(120)
circle(50,225)
seth(90)
circle(50,225)

fd(121)
end_fill()
left(56)

penup()
goto(-210,40)
pendown()
goto(0,80)
penup()
goto(160,110)
pendown()
goto(320,140)

done()

用python写一个简单的表白代码_python



上一篇:【分治的典型应用:归并排序】
下一篇:没有了
网友评论