This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 * |