Python程序无法在命令行下运行

from tkinter import *

def cc():
    workbook_new_name = filedialog.askopenfilename()

cc();


 
  
 
  

这段代码在IDE下能够正常运行,但是却无法再cmd命令行下运行
会提示"NameError: name 'filedialog' is not defined

通过倒腾发现

在cmd命令行下 def内无法识别通过import *输入的功能函数
其他一切正常
因此将代码改为:

 
  
from tkinter import filedialog

def cc():
    workbook_new_name = filedialog.askopenfilename()

cc();


 
 

你可能感兴趣的:(代码生涯)