我正在尝试提示用户输入他们的名字,以便它可以显示在我为Uni构建的程序的GUI中,问题是ttt = ...
不会接受除字符串以外的任何内容引号没有崩溃。
我的代码如下所示:
import tic_tac_toe_gui
import tkinter
# The object of the TicTacToeGUI class
# that renders the GUI.
# You can use this object to access the
# methods listed in the specification.
display_details() #displays author's details
name = input("Please enter your name here: ")
ttt = tic_tac_toe_gui.TicTacToeGUI(name) #defining GUI title bar
根据我的理解,它应该接受输入,将字符串分配给变量,从而允许用户输入显示在GUI中。
注意:无法编辑由导师构建的GUI。
如果您想查看GUI代码,请与我们联系。