1. 程式人生 > 實用技巧 >資料庫快取一致性的四種方案!

資料庫快取一致性的四種方案!

python怎麼檢視資料型別?

第一步我們首先需要知道在python中檢視變數資料型別是使用type()函式,type函式的用法如下圖所示:

第二步我們開啟py檔案,輸入

import numpy as npa1=123list=[1,2,3,4,5,6]array=np.array(list)print(type(a1))

打印出a1變數的資料型別,如下圖所示:

第三步執行py檔案之後,可以看到a1變數是int型別,如下圖所示:

第四步輸入

print(type(list))print(type(array))

打印出list變數和array變數的型別,如下圖所示:

第五步執行py檔案,可以看到分別是列表和陣列型別,如下圖所示:

以上就是python怎麼檢視資料型別的詳細內容,更多請關注 碼農教程其它相關文章!