回答編集履歴

1

コード記載

2020/07/08 06:37

投稿

jeanbiego
jeanbiego

スコア3966

test CHANGED
@@ -1 +1,35 @@
1
1
  行数がほしいなら、count=len(line)でどうですか。
2
+
3
+
4
+
5
+ 4行に対して、4と出ます。1と出るのはなにか間違えているのではないでしょうか。
6
+
7
+ ```python3
8
+
9
+ import io
10
+
11
+ txt = """a
12
+
13
+ b
14
+
15
+ c
16
+
17
+ d
18
+
19
+ """
20
+
21
+
22
+
23
+ f = io.StringIO(txt)
24
+
25
+ lines = f.readlines()
26
+
27
+ f.close()
28
+
29
+ count = len(lines)
30
+
31
+ print(count)
32
+
33
+ # 4
34
+
35
+ ```