tanks/testy.py

16 lines
154 B
Python
Raw Normal View History

2026-05-17 19:55:12 +02:00
from turtle import *
import turtle as t
def cc(c):
if c <= 3:
o = 0
return
fd(c)
lt(30)
cc(c / 2)
cc(80)
t.mainloop()