现在加上可选条件,让数组中大于5的数字全部变成5. import numpy as np arr = np.random.randint(0,10,(3,5)) print (arr) np.where(arr>5,5,arr).
確定! 回上一頁