pygame python小游戏
今天来用python中的turtle库绘图
# coding:utf-8
import time
import turtle as t
t.pensize(4)
t.colormode(255)
t.color((255,155,192),"pink")
t.setup(840,500)
t.speed(10)
t.pu()
t.goto(-100,100)
t.pd()
t.seth(-30)
t.begin_fill()
a=0.4
for i in range(120):
if 0<
原创
2022-05-01 16:43:10 ·
204 阅读 ·
0 评论