

# https://www.globalsino.com/ICs/
# Use of class

class MyClass():
    def xyz():
        print('Hello world!')

    def UVW():
        print("Yes, it is!")


class MyClassB():
    def xyz():
        print('Hello world!')

    def UVW():
        print("Yes, it is!")

thisIs = MyClass
thisIs.xyz()

