コード例 #1
0
ファイル: conference.py プロジェクト: justinta89/Work
def attendeeInfo():
    """
    Outputs attendee information
    """

    f = open("alist", "r")
    for line in f:
        name, email, company, state = line.split(',')
        a = Attendee(name, email, company, state)
        info = a.getInfo()
        print(info)
    f.close()