2017-03-04 73 views
0

我在想這b charcter是什麼以及它出現的原因。我也想知道在打印數組時是否可以擺脫它?我可以在我的印刷聲明中擺脫這個'b'字嗎?

這裏是我的例子:

arr1 = np.array(['1', '2'], dtype = 'c') 
print("array:", arr1, "and its dtype is: ", arr1.dtype) 

而這裏的輸出:

array: [b'1' b'2'] and its dtype is: |S1 

回答

相關問題