为了账号安全,请及时绑定邮箱和手机立即绑定

如何在我的代码中使用更好的“尝试”和“除外”?

如何在我的代码中使用更好的“尝试”和“除外”?

ABOUTYOU 2021-09-11 10:58:15
现在我有了这个代码,我需要更好地使用函数 try 和 except 并改进代码,比如我应该改变哪些部分这是我的代码的开头:contador = 0name = input("Put the name of the file:")while name != "close":    validation=0    try:        file = open(name,"r",1,"utf-8")        validation = validation + 1    except FileNotFoundError:        validation = validation    if validation >= 1:        Games=[]        countrylist = []        lines = 0        File = open(name,"r")         line = File.readline().strip()        while line != "":            parts= line.split(";")            country=parts[0]            game= parts[1]            sales= int(parts[2])            price= float(parts[3])            format= parts[4]            Games.append(parts)            countrylist.append(country)            line = File.readline().strip()            lines = lines + 1        contador = contador + 1
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 136 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信