浏览代码

Update template

Jonatan Gezelius 4 年之前
父节点
当前提交
bcfcf4ff36
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      template/a.py

+ 2 - 1
template/a.py

@@ -3,7 +3,8 @@ import os, argparse
 
 def solve_task(filename):
     with open(filename) as infile:
-        for line in infile:
+        for raw_line in infile:
+            line = raw_line.rstrip()
             pass
             
     os.system("pause")