Python 3 - 字典 type() 方法

  • 描述

    方法type()返回传递的变量的类型。如果传递的变量是字典,那么它将返回字典类型。
  • 句法

    以下是语法type()方法 -
    
    type(dict)
    
  • 参数

    dict− 这是字典。
  • 返回值

    此方法返回传递的变量的类型。
  • 例子

    以下示例显示了 type() 方法的用法。
    
    #!/usr/bin/python3
    dict = {'Name': 'Manni', 'Age': 7, 'Class': 'First'}
    print ("Variable Type : %s" %  type (dict))
    
  • 结果

    当我们运行上面的程序时,它会产生以下结果 -
    
    Variable Type : <type 'dict'>