我开始学习python,而我正在使用的电子书是"学习python的艰难方式"类似的东西。
我已经完成了0-19的练习,但是我仍然坚持练习2o,我正在请求你帮助解决它如何在脚本中保存文件或相关,以便当我输入windows power shell时得到什么是文件。
这对你来说可能是个愚蠢的问题,但对我有用,请帮助我。检查脚本中的注释。
这是python脚本:
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) # Is it here where should I put the file or if yes how?
print "First let's print the whole:\n"
print_all(current_file)
print "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)
这是我得到的错误。
PS D:\ pythonprograms> python ex20.py adsense.txt Traceback(最近一次调用最后一次): 文件" ex20.py",第3行,in 脚本,adsense.txt = argv NameError:name' adsense'没有定义 PS D:\ pythonprograms> python ex20.py adsense.txt Traceback(最近一次调用最后一次): 文件" ex20.py",第14行,in current_file = open(input_file,adsense.txt)#在这里我应该把文件放在哪里,或者如果是,如何? NameError:name' adsense'没有定义 PS D:\ pythonprograms> python ex20.py input_file Traceback(最近一次调用最后一次): 文件" ex20.py",第14行,in current_file = open(input_file," adsense.txt"," r")#在这里我应该把文件放在哪里,或者如果是,如何? TypeError:需要一个整数 PS D:\ pythonprograms>
答案 0 :(得分:1)
你得到的错误是什么?您需要提供文件的确切位置或确保您的python文件和文本文件都在同一目录中。
答案 1 :(得分:1)
是的,这是文件名的正确位置,但您必须使用“”或“带文件名 - 'filename'。 在您的代码python中尝试查找变量,其名称为adsense。