Buat jendela Tkinter terlihat lebih sedikit blury

'''
On some windows displays, tkinter windows will look blurried.
Add the folloing code at the start of your code to fix it
'''

from ctypes import windll #You may want to read up the docs
windll.shcore.SetProcessDpiAwareness(True) #Set high dpi to True
Busy Buzzard