Skip to content

Instantly share code, notes, and snippets.

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

Arnav Bajaj Jackhammer9

🏠
Working from home
View GitHub Profile
@Jackhammer9
Jackhammer9 / MyPaint.py
Created April 28, 2019 12:02
so i made a paint application no hate i am just 14
import turtle
win = turtle.Screen()
win.setup(900,600)
win.title("Jackhammer's Paint")
# ribbon
rib = turtle.Turtle()
rib.hideturtle()
rib.color('thistle')
@Jackhammer9
Jackhammer9 / dodgelvl1.py
Created April 15, 2019 09:57
source code to my dodge game please download or copy all the source codes so that you dont get any error as this is level based game each file is one level enjoy :)
import turtle
import time
import random
#-------------------------------------------- APPERANCE --------------------------------------------------------------
# screen setup
win = turtle.Screen()
win.bgcolor('black')
win.title('Dodge 2')