Just access the first item of the list/array, using the index access and the index 0: >>> list_ = [4] >>> list_[0] 4 >>> array_ = np.array([4]) ...
確定! 回上一頁