python gui without tkinter code example
Example 1: how to install tkinter for python
# for pip and windows, in cmd, write:
pip install tk
Example 2: basic tkinter gui
import tkinter as tk
root = tk.Tk()
root.title("my title")
root.geometry('200x150')
root.configure(background='black')
# enter widgets here
root.mainloop()