复制另一个文件中的内容

时间:2014-02-24 22:52:20

标签: python-3.3

如何制作,以便底部的打印(行)中的所有内容都导入到另一个文件中?任何帮助都会很酷!提前谢谢!

year_input = input("Input a year:")

for line in input_file:
   line = line.strip()
   year = line[-4:]

   if year.startswith(year_input) or year_input == "" or year_input == "all" or year_input == "ALL":
       print(line) 



file.close()
outfile.close()

0 个答案:

没有答案