Skip to content

Instantly share code, notes, and snippets.

@nerviantone
nerviantone / paint.py
Created June 22, 2019 14:45 — 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):