I am just getting started with programming and am making a Tic-Tac-Toe program. In my program I have a display function, which changes and makes sure what entered is valid, and a win checker. Is there a way that I can bind both of these functions to the enter key?
Something like:
RowEnt.bind("<Return>", display, checkWin)
you could nest both functions inside of another function 🙂 for example:
if you wanted to call both of them, you would simply use
combine()as the function you call 🙂