python - User Input crashing import GUI -
i trying prompt user name can displayed in gui of program building uni, problem ttt = ... won't accept other string in quotation marks without crashing.
my code looks this:
import tic_tac_toe_gui import tkinter # object of tictactoegui class # renders gui. # can use object access # methods listed in specification. display_details() #displays author's details name = input("please enter name here: ") ttt = tic_tac_toe_gui.tictactoegui(name) #defining gui title bar by understanding, should take input, assign string variable , allowing user input displayed in gui.
note: cannot edit gui built tutor.
let me know if you'd see gui code.
Comments
Post a Comment