tipc19sc.py

Created by andreanx

Created on September 29, 2019

339 Bytes

Script for the TI-Planet & Planète Casio back to school 2019 contest. Check https://tiplanet.org/forum/viewtopic.php?t=22992


#cadre fx-92+, pas touche:
from turtle import *
def frm():
  reset()
  penup()
  t=position()
  lt(180)
  fd(96+t[0])
  lt(90)
  fd(24+t[1])
  pendown()
  lt(90)
  for j in range(4):
    forward(193-145*(j%2))
    left(90)
  penup()
  lt(90)
  fd(24)
  lt(-90)
  fd(96)
def img():
  frm()
  #ajoute ce que tu veux:
  
img()