I am programming a yahtzee simulator (for learning) and would like to have a few screens (tkinter instances) running at the same time but i dont want them to start at the same time and I can't figure out why they do start in the same time.
I haven't tried much except googling about it, I am new to tkinter programming...
from tkinter import *
Screen1 = Tk()
screen2 = Tk()
Screen1.mainloop()
I excpected that only screen1 would be shown but they both are being shown, any help?