Python寫的新冠病毒

受疫情影響已經在家呆好久了,拿Python寫了一個新冠病毒,不是很好看,當然他也不需要很好看。我也是一個剛剛接觸Python的小白,將就一下吧

import turtle
turtle.setup(650,650,300,300)
turtle.penup()
turtle.fd(-100)
turtle.pendown()
turtle.pensize(10)
for i in range(18):
    turtle.pencolor("red")
    turtle.fd(-20)
    turtle.right(90)
    turtle.pencolor("red")
    turtle.circle(-10,340)
    turtle.left(60)
    turtle.pencolor("red")
    turtle.fd(22)
    turtle.left(90)
    turtle.pencolor("gray")
    turtle.circle(-250,10)
    turtle.right(90)
turtle.done()

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章