numpy中的True/False如何轉化成1/0

在array後加個0就能夠,操做以下:code import numpy as np a = np.array([True, False]) print(a) print(a + 0)
相關文章
相關標籤/搜索