Browse Source

Update template

Jonatan Gezelius 4 năm trước cách đây
mục cha
commit
bcfcf4ff36
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  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")