导语:
每当冬季来临,就只想宅在家里,万般人世间美好,都不及一张床的舒服与温馨,太阳一晒,被子
枕头都是阳光的味道。
拥有属于自己的小屋,那就是属于自己的快乐星球,把喜欢的一切放进自己的房间,不为悦人,只
为悦己。很普通,很简单的房间,开着??的灯光,一个人安安静静的看看书,玩玩手机,偶尔叫
三两好友过来串串门。
每天无论有多晚回家,都能看到有一盏灯在开着,里面总有一个人在那里等着你,叫你来吃饭......
正文:
虽然说,现在还没有属于自己的房子,但是用python画一个房子小case啦~
1)代码 注意:运行本程序前请确保已安装turtle
import turtle as t
t.pensize(2)
t.speed(1) #设置画画的速率
t.colormode(255)
t.pencolor("black")
t.begin_fill()
#房顶
t.fillcolor(0,245,255)
for i in range(3):
t.forward(240)
t.left(120)
t.end_fill()
#房顶阁楼窗户外框
t.penup()
t.goto(80,20)
t.pendown()
t.begin_fill()
t.fillcolor("white")
for i in range(4):
t.forward(80)
t.left(90)
t.end_fill()
#阁楼窗户内部的横线
t.penup()
t.goto(80,60)
t.pendown()
t.forward(80)
#阁楼窗户内部的竖线
t.penup()
t.goto(120,100)
t.pendown()
t.right(90)
t.forward(80)
t.right(90)
t.forward(80)
#房屋主体
t.left(90)
t.penup()
t.goto(0,0)
t.pendown()
t.begin_fill()
t.fillcolor(255,165,0)
for i in range(2):
t.forward(240)
t.left(90)
t.forward(240)
t.left(90)
t.end_fill()
#屋门
t.penup()
t.goto(30,-180)
t.pendown()
t.begin_fill()
t.fillcolor("blue")
for i in range(2):
t.forward(50)
t.left(90)
t.forward(100)
t.left(90)
t.end_fill()
#窗框
t.penup()
t.go to(140,-90)
t.pen down()
t.begin_fill()
t.fill color("white")
for i in range(4):
t.forward(70)
t.left(90)
t.end_fill()
#窗户上的竖线
t.penup()
t.go to(175,-90)
t.pen down()
t.left(90)
t.forward(70)
t.hade turtle()
2)图片展示:
生活无需那么拥挤,把平淡琐碎的日子过成自己喜欢的样子,一半烟火,一半诗意。
总结:
好啦,文章写到这里就结束啦~
大家喜欢的记得点点赞,需要完整的项目源码的可以私信我即可哟!
👉点击这行蓝色字体也行
|