Answer:
In your program you should write:
def __int__(self, name, age):
As:
def __init__(self, name, age):
And your code should be like:
class showInformation(object):
def __init__(self, name, age):
self.name = name
self.age = age
def showName(self):
print("Your Name: "+self.name)
def showAge(self):
print("Your Age: "+self.age)
Info = showInformation("bot", "20")
Info.showName()
Let me know if it is working for you or not.