为啥运行代码不显示界面啊
import PySimpleGuI as Sg
2 #建义布局
ayout=[
[sg.Text(请输入你的姓名)】
[sg.Text(姓名’),sg.InputText('GODV')],
[sg.Text(性别"),sg.InputText(男)],
[sg.Text(国籍),Sg.InputText(中国)],
80 [sg.Button('确定'),Sg.Button(取消)]
9
10 #创建窗口
11 window=sq.Window('Python GUI'ayout)
12 while True:
3 event,values=window.readC)
4 if event==None:
5 break
16 ifevent=='确认:
一 print(values['name'])
18 #window.mginloopC)
19 window.cLose()
20