I was checking type of every thing in python. But I could not understand why the type of a class is <class 'type'>
class Hello:
pass
c = Hello
print('type check one: ', type(c))
print('type check two: ', type(Hello))
output:- type check one: <class 'type'> type check two: <class 'type'>