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
相关文章
相关标签/搜索