Python2和python3中類型判斷

Python2類型判斷 >>> type(33) == types.IntType True >>> type("33") == types.StringType True >>> type(33.33) == types.FloatType True >>> type({"dd":33}) == types.DictType True >>> type([33,33]) == types.Lis
相關文章
相關標籤/搜索