回答編集履歴

1

出力箇所の修正

2018/10/24 03:41

投稿

suzu6
suzu6

スコア168

test CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
  fileobj = open("a.log","a")
42
42
 
43
- print ( fileobj, line.rstrip())
43
+ print >> fileobj, line.rstrip()
44
44
 
45
45
  ```
46
46