class object
12345678910111213141516
#create a new class
class Welcome(object):
def hello(self):
print("Hello!")
#create an object
x = Welcome()
x.hello()
y = Welcome()
print(type(x) == type(y))
print(type(x) is Welcome)
print(type(x) == Welcome)
Python
INFO