class human(object):
    kind = 'humam'
    def __init__(self,name, sex, age):
        self.name = name
        self.sex = sex
        self.age = age
    def report(self):
        print(self.name)
        print(self.sex)
        print(self.age)
com = int(input('What would you like to do: \n 1) Add a contact \n 2) Info on a contact \n 3) Break\n'))

humans = []

while com != 3:
    if com == 1:
        name,sex,age = input('Enter name sex age: ').split()
        humans.append(human(name,sex,age))
    if com == 2:
        name = input('Enter name: ')
        for somehuman in humans:
            if name in somehuman.name:
                somehuman.report()
    com = int(input('What would you like to do: \n 1) Add a contact \n 2) Info on a contact \n 3) Break\n'))
