質問編集履歴

1

質問内容に不足があったので追加しました

2018/10/28 14:47

投稿

minato86
minato86

スコア15

test CHANGED
File without changes
test CHANGED
@@ -17,3 +17,25 @@
17
17
  ### 試したこと
18
18
 
19
19
  glob.globでファイルのリストだけは取得しました。
20
+
21
+
22
+
23
+ ### 補足
24
+
25
+ ```Python
26
+
27
+ points=0
28
+
29
+ points=str(points)
30
+
31
+ f=open('./count/count.txt','w')
32
+
33
+ f.write(points)
34
+
35
+ f.close()
36
+
37
+ ```
38
+
39
+ で保存した0を取得して1を足したいです。
40
+
41
+ (ファイルは複数個あります)