how to make a user interface in python code example
Example 1: how to create tkinter window
import tkinter
master = tkinter.Tk()
master.mainloop()
Example 2: python interface
### Good tutorial to create GUI - UI for Python
https://realpython.com/qt-designer-python/