鱼C论坛

 找回密码
 立即注册
查看: 764|回复: 3

[已解决]029课第三题打印指定行,我这个为什么不能打印全文呢?

[复制链接]
发表于 2020-3-18 01:53:20 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
微信截图_20200318015013.jpg
求大神指教
报错是:
Traceback (most recent call last):
  File "E:\Python\029课后作业打印指定行.py", line 44, in <module>
    file_view(file_name,line_num)
  File "E:\Python\029课后作业打印指定行.py", line 26, in file_view
    end = int(end)
ValueError: invalid literal for int() with base 10: ''


其他都正常,就是输入 : 的时候不会打印全文:
def file_view(file_name,line_num):
        if line_num.strip() == ':':
                begin = '1'
                end = '-1'

        (begin,end) = line_num.split(':')

        if begin == '':
                begin = '1'
        elif end == '':
                end = '-1'

        if begin == '1' and end == '-1':
                prompt = '的全文'
        elif begin == '1':
                prompt = '从开始到第%s行' % end
        elif end == '-1':
                prompt = '从第%s行到结尾' % begin
        else:
                prompt = '从第%s行到第%s行' % (begin,end)

        
        print ('\n文件%s%s的内容如下:\n' % (file_name,prompt))

        begin = int(begin)-1
        end = int(end)
        lines = end - begin

        f = open(file_name)

        for i in range(begin):
                f.readline()

        if lines < 0:
                print (f.read())
        else:
                for j in range(lines):
                        print (f.readline(),end='')

        f.colse()

file_name = input('请输入要打开的文件(C:\\test.txt):')
line_num = input('请输入要打印的范围【格式如 13:21 或 :21 或 13: 】:')
file_view(file_name,line_num)


         






       
最佳答案
2020-3-18 09:58:11
你在第3行第4行给输入':'的时候赋值begin和end,但是马上就被第6行的(begin,end) = line_num.split(':')将赋值改为了'',第10行是elif,也就是说只有begin不为空的时候才会去判断end是否为空,这时候输入的是':'的时候就会出现end不会被重新赋值为'-1'而保持为'',下面的int(end)当然就会报错。还有你的f.close()输错了。
def file_view(file_name,line_num):
#         if line_num.strip() == ':':
#                 begin = '1'
#                 end = '-1'
#单独冒号的判断没有必要了,因为后面的完全可以取代
        (begin,end) = line_num.split(':')

        if begin == '':
                begin = '1'
        if end == '':      #elif改成if
                end = '-1'

        if begin == '1' and end == '-1':
                prompt = '的全文'
        elif begin == '1':
                prompt = '从开始到第%s行' % end
        elif end == '-1':
                prompt = '从第%s行到结尾' % begin
        else:
                prompt = '从第%s行到第%s行' % (begin,end)

        
        print ('\n文件%s%s的内容如下:\n' % (file_name,prompt))

        begin = int(begin)-1
        end = int(end)
        lines = end - begin
        f = open(file_name)

        for i in range(begin):
                f.readline()

        if lines < 0:
                print (f.read())
        else:
                for j in range(lines):
                        print (f.readline(),end='')
        f.close()     #修改一下错误

file_name = input('请输入要打开的文件(C:\\test.txt):')
line_num = input('请输入要打印的范围【格式如 13:21 或 :21 或 13: 】:')
file_view(file_name,line_num)
  
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-18 07:40:06 | 显示全部楼层
第26-25行end你又=begin和end重复
第44行它不知道file_view是什么
如果好请顶置
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-18 09:58:11 | 显示全部楼层    本楼为最佳答案   
你在第3行第4行给输入':'的时候赋值begin和end,但是马上就被第6行的(begin,end) = line_num.split(':')将赋值改为了'',第10行是elif,也就是说只有begin不为空的时候才会去判断end是否为空,这时候输入的是':'的时候就会出现end不会被重新赋值为'-1'而保持为'',下面的int(end)当然就会报错。还有你的f.close()输错了。
def file_view(file_name,line_num):
#         if line_num.strip() == ':':
#                 begin = '1'
#                 end = '-1'
#单独冒号的判断没有必要了,因为后面的完全可以取代
        (begin,end) = line_num.split(':')

        if begin == '':
                begin = '1'
        if end == '':      #elif改成if
                end = '-1'

        if begin == '1' and end == '-1':
                prompt = '的全文'
        elif begin == '1':
                prompt = '从开始到第%s行' % end
        elif end == '-1':
                prompt = '从第%s行到结尾' % begin
        else:
                prompt = '从第%s行到第%s行' % (begin,end)

        
        print ('\n文件%s%s的内容如下:\n' % (file_name,prompt))

        begin = int(begin)-1
        end = int(end)
        lines = end - begin
        f = open(file_name)

        for i in range(begin):
                f.readline()

        if lines < 0:
                print (f.read())
        else:
                for j in range(lines):
                        print (f.readline(),end='')
        f.close()     #修改一下错误

file_name = input('请输入要打开的文件(C:\\test.txt):')
line_num = input('请输入要打印的范围【格式如 13:21 或 :21 或 13: 】:')
file_view(file_name,line_num)
  
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-19 00:26:56 | 显示全部楼层
txxcat 发表于 2020-3-18 09:58
你在第3行第4行给输入':'的时候赋值begin和end,但是马上就被第6行的(begin,end) = line_num.split(':')将 ...

明白了,感谢!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 01:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表