也可以用isinstance来判断数据是不是指定的类型: isinstance(123, int) # 123是不是整型值 # True isinstance('123', int) # False isinstance(True, bool) # True