回答編集履歴

1

追記

2017/12/26 03:31

投稿

LouiS0616
LouiS0616

スコア35660

test CHANGED
@@ -2,8 +2,28 @@
2
2
 
3
3
  > ```Python
4
4
 
5
- > def formant(signal, fcenters):
5
+ > def formant(signal, fcenters): # L67
6
6
 
7
7
  > formant = []
8
8
 
9
9
  > ```
10
+
11
+
12
+
13
+ エラーの再現
14
+
15
+ ---
16
+
17
+ ```Python
18
+
19
+ >>> my_list = []
20
+
21
+ >>> my_list()
22
+
23
+ Traceback (most recent call last):
24
+
25
+ File "<stdin>", line 1, in <module>
26
+
27
+ TypeError: 'list' object is not callable
28
+
29
+ ```