Compare list entry from csv files

A

Anatoli Hristov

Hello,

I'm trying to complete a namebook CSV file with missing phone numbers
which are in another CSV file.
the namebook file is structured:
First name;Lastname; Address; City; Country; Phone number, where the
phone number is missing.

The phonebook file is structured as:
Name; phone, where the name shows first and last name and sometimes
they are written together like "BillGates" or "Billgatesmicrosoft".

I'm importing the files as lists ex.: phonelist" ["First name", "Last
name","address","City"."Country","phone"],[etc...]
in the loop I can compare the entry for ex. "Bill Gates" in the field
"BillGatesmicrosoft" but I can't index it so I can only take the phone
number from the file with the phones and insert it to field in the
Namebook. Can you please give me an advice?

Thanks


import csv

origf = open('c:/Working/Test_phonebook.csv', 'rt')
phonelist = []

try:
reader = csv.reader(origf, delimiter=';')
for row in reader:
phonelist.append(row)
finally:
origf.close()

secfile = open('c:/Working/phones.csv', 'rt')
phones = []

try:
readersec = csv.reader(secfile, delimiter=';')
for row in readersec:
phones.append(row)
finally:
secfile.close()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top