ブールインデックス 2017年12月3日 by 河副 太智 Leave a Comment import numpy as np arr = np.array([2, 3, 4, 5, 6, 7]) print(arr % 2 == 0)>>>[ True False True False True False] print(arr[arr%2==0])>>>[2 4 6] print(arr[arr%2 == False])>>>[2 4 6] Tweet [`yahoo` not found]
コメントを残す