Skip to content

Instantly share code, notes, and snippets.

View AngusAU293's full-sized avatar
🏠
Working from home

HackerSploit AngusAU293

🏠
Working from home
View GitHub Profile
@AngusAU293
AngusAU293 / Turtle Commands.py
Last active March 14, 2023 04:59
A Python program that has some UI to control the Turtle library
from tkinter import *
from turtle import *
def resetGraphics():
reset()
def drawSquare():
reset()
forward(100)
left(90)
forward(100)
left(90)