Hi. I'm new to and I had a question for an assignment due very soon. This is for my Python Tkinter users. Can someone explain to me what these specific lines each mean?

GUI = threading.Thread(target=createGUI())
GUI.start()
Process = threading.Thread(target=createGUI())
Process.start()

GUI.join()
Process.join()

Thank you so so much!

Solved
Show answers

Ask an AI advisor a question