listを割合で指定して分割する事は可能でしょうか?
ネットでは以下のような形で実現できると記述を見ましたがエラーが出てしまいました。
a = [1, 2, 3, 4, 5, 6, 7, 8, 9,10] a = a[:n*70/100] #後半3割 a = a[-n*30/100:] #前半3割
エラー内容
TypeError Traceback (most recent call last) <ipython-input-80-d0757dbd73cd> in <module> 1 a = [1, 2, 3, 4, 5, 6, 7, 8, 9,10] ----> 2 a = a[:n*70/100] #後半3割 3 a = a[-n*30/100:] #前半3割 4 print(a) TypeError: slice indices must be integers or None or have an __index__ method
何卒よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/19 21:41