python3 判斷資料型別

踏破凌霄城發表於2019-01-21
def estType():
    eventList = [1, `Tom`, {`name`: `Lucy`, `age`: 16, `grade`: 98}]
    print(type(eventList[0]) is int)
    print(type(eventList[1]) is int)
    print(type(eventList[1]) is str)
    print(type(eventList[2]) is dict)

結果:

True
False
True
True

列印出來的結果是真和假,當然也可以封裝成一個標準的函式,傳入一個引數,判斷其資料型別,返回真假,有時候還是很好用的

相關文章