84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
from tkinter import * ro = Tk()
python3.4,windows8.1 *64
这句话在交互命令行里是可以执行的,在IDE里也没报错,只是双击打开就会闪退。
在.py里使用其他的都可以正常打开,但是再用tkinter时就会闪退,请问这是为什么?如何解决? 谢谢
小伙看你根骨奇佳,潜力无限,来学PHP伐。
python3里面没有raw_input(),出错之后会抛异常,如果没有处理就会退出
raw_input()
你是把 .py 文件保存后直接双击执行的吧?
.py
上面这段代码是有问题的,但闪退让你连错误提示都没得看。
所以,你得用正确的姿势打开 .py 文件,在 Windows 下,最好这么做:
Windows
这样执行之后,你会在另一个窗口里看到输出和报错信息。
from tkinter import * ro = Tk() ro.mainloop()
加上最后一行试试
python3里面没有
raw_input()
,出错之后会抛异常,如果没有处理就会退出你是把
.py
文件保存后直接双击执行的吧?上面这段代码是有问题的,但闪退让你连错误提示都没得看。
所以,你得用正确的姿势打开
.py
文件,在Windows
下,最好这么做:这样执行之后,你会在另一个窗口里看到输出和报错信息。
加上最后一行试试