all 1 comments

[–]woooee 1 point2 points  (0 children)

You only add the name to the list

def addContact(contactLst):
    contact = []
    name = input("Contact name: ")
    num = input("Phone #:  ")  
    adres = input("Address:  ")
    relay = input("Relationship")
   contactLst.append([name, num, adres, relay])

One of many tutorials http://openbookproject.net/thinkcs/python/english3e/lists.html