Skip to content

Instantly share code, notes, and snippets.

@jlee7
jlee7 / edit_distance_with_gui.py
Created January 19, 2018 19:12
Calculating the Edit Distance with Tkinger GUI
# -*- coding: UTF-8 -*-
# Editierdistanz wird auf Basis der Levenshtein-Distanz ermittelt.
# Quelle: Source: http://code.activestate.com/recipes/576874-levenshtein-
# distance/http://stackoverflow.com/questions/5306756/how-to-show-percentage-
# in-python
#
# Jede Operation wird mit einem Punkt bewertet
from Tkinter import *
from ScrolledText import *