from caixaimport import *
# Variables
# Tkinter Variables
win_width, win_height = 1280, 1024
windows = Tk() # start a variable Tk
windows.geometry(f'{win_width}x{win_height}')
windows.title('SCH payment system') # putting a title in variable window
# Method
# Program
windows.mainloop() # Start the variable "window" with the function mainloop