What does the < > bracket mean in python? Like in the following list i printed out...
OrderedDict([(<alert.power_level: 0>, OrderedDict([('alert', <alert.power_level: 0>), ('level', <alert_level.none: 0>), ('list_flags', <list_flags_Bitfield: [<list_flags.First: 0>]>)])), (<alert.too_hot: 1>, OrderedDict([('alert', <alert.too_hot: 1>), ('level', <alert_level.none: 0>), ('list_flags', <list_flags_Bitfield: []>)])), (<alert.too_cold: 2>, OrderedDict([('alert', <alert.too_cold: 2>), ('level', <alert_level.none: 0>), ('list_flags', <list_flags_Bitfield: [<list_flags.Last: 1>]>)]))])
Also how do I get the 'level' value (the one after alert.power_level: 0)