have you ever seen a handwritten code font that isn’t comic mono? neither have i!
currently working on: iso/iec 8859-1
enkyline is a new handwritten monospace font made by enky. it’s free and it’s OFL!
import random def gentimes(num: int, max: int): global exercises exercises = [] for i in range(num): ex = f"{random.randint(2, max)} * {random.randint(2, max)} = __" while exercises.__contains__(ex): ex = f"{random.randint(2, max)} * {random.randint(2, max)} = __" exercises.append(ex) return exercises
so far, enkyline only supports a very small subset of unicode, however that subset will grow as time passes.