Skip to content

Instantly share code, notes, and snippets.

View standerpm's full-sized avatar
🎯
Focusing

Peet Stander standerpm

🎯
Focusing
  • StanderPM
  • Pretoria South Africa
View GitHub Profile
@standerpm
standerpm / paint.py
Created October 30, 2019 19:08 — forked from nikhilkumarsingh/paint.py
A simple paint application using tkinter in Python 3
from tkinter import *
from tkinter.colorchooser import askcolor
class Paint(object):
DEFAULT_PEN_SIZE = 5.0
DEFAULT_COLOR = 'black'
def __init__(self):