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

Python中 tuple object is not callable问题

Python中 tuple object is not callable问题

慕斯1158143 2017-09-09 12:24:40
from sys import argv script, input_file = argv def print_all(f):     print f.read() def rewind(f):     f.seek(0) def print_a_line(line_count, f):     print line_count, f.readline() current_file = open(input_file) print "First let's print the whole file:\n" print_all(current_file) print "Now let's rewind, kind of like a tape." rewind(current_file) print "Let's print three lines:" current_line = 1 print_a_line = (current_line, current_file) current_line = current_line + 1 print_a_line(current_line, current_file) current_line = current_line + 1 print_a_line(current_line, current_file)
查看完整描述

1 回答

?
慕斯1158143

TA贡献1条经验 获得超0个赞

找到错误了 27行多了个等号。。

查看完整回答
反对 回复 2017-09-09
  • 1 回答
  • 0 关注
  • 9613 浏览
慕课专栏
更多

添加回答

举报

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