温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

python实现生日快乐的代码示例

发布时间:2020-10-22 11:19:54 来源:亿速云 阅读:5373 作者:小新 栏目:编程语言

python实现生日快乐的代码示例?这个问题可能是我们日常学习或工作经常见到的。希望通过这个问题能让你收获颇深。下面是小编给大家带来的参考内容,让我们一起来看看吧!

python实现生日快乐代码的方法:首先要按【CTRL+R】键,cmd进入命令行,输入pip install turtle安装第三方库;然后打开python IDE,将相关代码复制进去;最后按快捷键F5进行保存且执行即可。

python实现生日快乐代码的方法:

1、首先要CTRL+R然后cmd进入命令行,输入pip install turtle安装第三方库

2、打开python IDE,如下图,点击“File",选择”New File"

python实现生日快乐的代码示例

3、复制代码

#HappyBirthday
import turtle
import time
def move(angle,length):
    turtle.penup()
    turtle.seth(angle)
    turtle.fd(length)
#prepare
turtle.setup(1000,400,100,100)
turtle.penup()
turtle.fd(-350)
turtle.seth(90)
turtle.fd(50)
turtle.pendown()
turtle.pensize(10)
turtle.pencolor("green")
turtle.seth(0)
turtle.hideturtle()
turtle.speed(5)
#呀
turtle.fd(100)
#生
turtle.pencolor("green")
turtle.circle(50,90)
turtle.circle(50,-30)
turtle.seth(0)
turtle.fd(100)
turtle.fd(-50)
turtle.left(90)
turtle.fd(30)
turtle.fd(-60)
turtle.left(90)
turtle.fd(50)
turtle.fd(-100)
turtle.fd(50)
turtle.left(90)
turtle.fd(50)
turtle.right(90)
turtle.fd(60)
turtle.fd(-120)
#日
turtle.penup()
turtle.fd(-30)
turtle.pendown()
turtle.seth(90)
turtle.fd(100)
turtle.seth(0)
turtle.fd(70)
turtle.seth(-90)
turtle.fd(50)
turtle.seth(180)
turtle.fd(70)
turtle.seth(-90)
turtle.fd(50)
turtle.seth(0)
turtle.fd(70)
turtle.seth(90)
turtle.fd(50)
#移动
move(0,30)
#快
turtle.pensize(8)
turtle.circle(30,15)
turtle.pendown()
turtle.circle(30,60)
turtle.penup()
turtle.seth(0)
turtle.fd(13)
turtle.seth(90)
turtle.pendown()
turtle.fd(40)
turtle.fd(-50)
turtle.penup()
turtle.seth(0)
turtle.fd(13)
turtle.pendown()
turtle.seth(-180)
turtle.circle(20,-90)
turtle.circle(20,90)
turtle.penup()
turtle.fd(13)
turtle.pendown()
turtle.seth(-90)
turtle.fd(60)
move(0,40)
move(90,80)
turtle.pendown()
turtle.seth(0)
turtle.fd(30)
turtle.seth(90)
turtle.fd(30)
turtle.fd(-30)
turtle.seth(0)
turtle.fd(20)
turtle.seth(-90)
turtle.fd(35)
turtle.seth(0)
turtle.fd(10)
turtle.fd(-30)
turtle.seth(90)
turtle.fd(35)
turtle.fd(-35)
turtle.seth(0)
turtle.fd(-25)
move(-90,50)
move(180,25)
turtle.pendown()
turtle.seth(0)
turtle.penup()
turtle.circle(50,20)
turtle.pendown()
turtle.circle(50,70)
turtle.seth(-90)
turtle.circle(50,60)
#移动
move(0,50)
move(90,45)
#乐
turtle.pensize(10)
turtle.pendown()
turtle.fd(40)
turtle.seth(0)
turtle.circle(50,60)
turtle.circle(50,-25)
move(-90,15)
turtle.pendown()
turtle.fd(30)
turtle.seth(0)
turtle.fd(-25)
turtle.fd(65)
turtle.fd(-40)
turtle.seth(-90)
turtle.fd(60)
turtle.seth(135)
turtle.fd(20)
move(135,10)
turtle.pendown()
turtle.seth(-135)
turtle.fd(20)
move(0,70)
turtle.pendown()
turtle.seth(135)
turtle.fd(20)

4、按快捷键F5进行保存且执行,最终效果图如下:

python实现生日快乐的代码示例

感谢各位的阅读!看完上述内容,你们对python实现生日快乐的代码示例大概了解了吗?希望文章内容对大家有所帮助。如果想了解更多相关文章内容,欢迎关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI