用python画一个爱心

python 复制代码
import turtle
turtle.setup(600, 400)
turtle.pensize(2)
turtle.penup()
turtle.goto(0, 90)
turtle.setheading(0)
turtle.left(135)
turtle.begin_fill();
turtle.color("pink", "pink")
turtle.pendown()
turtle.circle(63.65, 180)
turtle.goto(0, -90)
turtle.goto(90, 0)
turtle.setheading(45)
turtle.circle(63.65, 180)
turtle.end_fill()
turtle.hideturtle()
turtle.exitonclick()
相关推荐
lifloveyou4 小时前
table接口结构
python
Warson_L6 小时前
class 扩展
python
前端与小赵7 小时前
Python 数据结构陷阱与复数运算优化:列表、元组、字典成员操作辨析及 NumPy 高效实践
python
天天进步20157 小时前
Python全栈项目--基于深度学习的视频目标跟踪系统
python·深度学习·音视频
天天进步20157 小时前
Python全栈项目--Python自动化运维工具开发
运维·python·自动化
(●—●)橘子……7 小时前
力扣第503场周赛练习理解
python·学习·算法·leetcode·职场和发展·周赛
爱吃羊的老虎8 小时前
【JAVA】python转java:Spring Boot 入门
java·spring boot·python
小桥流水---人工智能8 小时前
【已解决】ImportError: cannot import name ‘AdamW‘ from ‘transformers.optimization‘
python
芝麻开门GEO8 小时前
泰安GEO优化服务,真的能提升效果吗?
人工智能·python
颜酱9 小时前
选读:工业级调用 LangChain:从 Demo 到企业级应用
python