前提・実現したいこと
Google colaboratoryで以前のコードでnumpyを使い、同じノートブック(ページ)を使い続けると次のエラーが出ます。該当のコードではnumpyは使っていないので不思議です。新規のノートブックを開くことで対応していますが改善方法はありますか?
発生している問題・エラーメッセージ
TypeError Traceback (most recent call last) <ipython-input-7-95483b315350> in <module>() 2 3 n = int(input()) ----> 4 l = list(map(int, input().split())) 5 6 triangle = itertools.combinations(l, 3) TypeError: 'numpy.ndarray' object is not callable
python
import itertools n = int(input()) l = list(map(int, input().split())) triangle = itertools.combinations(l, 3) cnt = 0 for i in triangles: if max(i)*2 > sum(i): cnt += 1 print(cnt)
補足情報(FW/ツールのバージョンなど)
google colaboratory
python 3
回答1件
あなたの回答
tips
プレビュー