回答編集履歴

1

質問修正への回答

2021/11/14 07:07

投稿

ppaul
ppaul

スコア24668

test CHANGED
@@ -21,3 +21,31 @@
21
21
  となりますので、その意味を考えてください。
22
22
 
23
23
  英語が苦手なら、[Google翻訳](https://translate.google.co.jp/?hl=ja&sl=en&tl=ja&text=SyntaxError%3A%20invalid%20syntax&op=translate)を使って意味を調べましょう。
24
+
25
+
26
+
27
+ コードが修正されたようですね。
28
+
29
+
30
+
31
+ 実行してみましょう。すると、
32
+
33
+
34
+
35
+ ```python
36
+
37
+ >>> file('data3D.txt')
38
+
39
+ Traceback (most recent call last):
40
+
41
+ File "<stdin>", line 1, in <module>
42
+
43
+ File "<stdin>", line 5, in file
44
+
45
+ TypeError: object of type '_io.TextIOWrapper' has no len()
46
+
47
+ ```
48
+
49
+ となりますので、その意味を考えてください。
50
+
51
+ 英語が苦手なら、[Google翻訳](https://translate.google.co.jp/?hl=ja&sl=en&tl=ja&text=TypeError%3A%20object%20of%20type%20%27_io.TextIOWrapper%27%20has%20no%20len()&op=translate)を使って意味を調べましょう。