Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pythonの私のコードで
for i in array_config(1,len_config): print array_config[2]
ショー
TypeError: 'list' object is not callable
(array_config は設定ファイルの配列です) (len_configs の値は 7)
そのエラーを取り除く方法は?
最初の行で関数のように array_config を呼び出しています。あなたがこれを書くつもりだったように感じます:
for i in array_config: print i