用于查询某变量属于什么类型的函数

    1. aeg = int(11.1)
    2. print(type(aeg))
    3. #打印出结果 <class 'int'> 属于int整数