关于这个python脚本的问题!

时间:2010-11-16 03:29:59

标签: python

if __name__=="__main__":
    fname= raw_input("Please enter your file:")
    mTrue=1
    Salaries=''
    Salarieslist={}
    Employeesdept=''
    Employeesdeptlist={}
    try:
        f1=open(fname)
    except:
        mTrue=0
        print 'The %s does not exist!'%fname
    if mTrue==1:
        ss=[]   
        for x in f1.readlines():
            if 'Salaries' in x:
                Salaries=x.strip()
            elif 'Employees' in x:
                Employeesdept=x.strip()
        f1.close()
        if Salaries and Employeesdept:
            Salaries=Salaries.split('-')[1].strip().split(' ')
            for d in Salaries:
                s=d.strip().split(':')
                Salarieslist[s[0]]=s[1]
            Employeesdept=Employeesdept.split('-')[1].strip().split(' ')
            for d in Employeesdept:
                s=d.strip().split(':')
                Employeesdeptlist[s[0]]=s[1]
            print "1) what is the average salary in the company: %s "%Salarieslist['Avg']            
            print "2) what are the maximum and minimum salaries in the company: maximum:%s,minimum:%s "%(Salarieslist['Max'],Salarieslist['Min'])
            print "3) How many employees are there in each department :IT:%s, Development:%s, Administration:%s"%(
                Employeesdeptlist['IT'],Employeesdeptlist['Development'],Employeesdeptlist['Administration'])


        else:
            print 'The %s data is err!'%fname

当我输入文件名时,但是没有继续,为什么?如果我输入名为company.txt的文件,但它始终显示该文件不存在。为什么呢?

3 个答案:

答案 0 :(得分:4)

我可以给你一些提示,可以帮助你更好地解决问题

创建一个函数并在main中调用它。

if __name__=="__main__":
    main()

不要将整个块放在if mTrue==1:下,而只是从错误的函数返回,例如

def main():
    fname= raw_input("Please enter your file:")
    try:
        f1=open(fname)
    except:
        print 'The %s does not exist!'%fname
        return

    ... # main code here

永远不会捕获所有异常,而是捕获特定的异常,例如IO错误

try:
   f1 = open(fname):
except IOError,e:
  print 'The %s does not exist!'%fname

否则捕获所有异常可能会捕获语法错误或拼写错误的名称等

打印您获得的异常,可能并不总是找不到文件,可能是您没有读取权限或类似的内容

最后你的问题可能只是,文件可能不存在,尝试输入完整路径

答案 1 :(得分:1)

您当前的工作目录不包含company.txt。 设置当前工作目录或使用绝对路径。

您可以像这样更改工作目录:

import os
os.chdir(new_path)

答案 2 :(得分:0)

除了更具体地说明您想要捕获哪些异常之外,您应该考虑捕获异常对象本身,以便您可以在错误消息中打印它的字符串表示形式:

try:
    f1 = open(fname, 'r')
except IOError, e:
    print >> sys.stderr, "Some error occurred while trying to open %s" % fname
    print >> sys.stderr, e

(您还可以了解有关特定类型的Exception对象以及可能处理的更多信息 代码中有一些异常。您甚至可以从解释器中捕获异常以供自己检查,这样您就可以对它们运行dir(),并在您找到的每个有趣属性上运行type()等等。