Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4243788
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T03:37:24+00:00 2026-05-21T03:37:24+00:00

I am reading in a .csv file similar to the following. Note that PhoneNumbers

  • 0

I am reading in a .csv file similar to the following. Note that PhoneNumbers can contain multiple values delimited by the pipe character.

FirstName,LastName,PhoneNumbers
Bucky,Fuller,213.283.5555|714.345.5566
Stephen,Hawking,212.456.7897|312.345.6677|415.223.3423
Robert,Heinlein,562.457.8899

I am able to read in the .csv file and write out to a file using the following.

.....
dReader = csv.DictReader(open('employee_import.csv', 'rb'), delimiter=',', quotechar='`')
for row in dReader:
file.write("\t\t\t<PHONEBOOK>\n")
file.write("\t\t\t\t<LASTNAME>"+str(row.get('LastName'))+"</LASTNAME>\n")
file.write("\t\t\t\t<FIRSTNAME>"+str(row.get('FirstName'))+"</FIRSTNAME>\n")
file.write("\t\t\t\t<PHONENUM>"+str(row.get('PhoneNumbers'))+"</PHONENUM>\n")
    file.write("\t\t\t<PHONEBOOK>\n")
.....

I was wondering if anyone had any ideas how I could iterate through the PhoneNumbers Key,Value pair so that I can separate out the multiple PhoneNumbers a person can have? Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T03:37:25+00:00Added an answer on May 21, 2026 at 3:37 am

    Why not split the phone number field?

    for number in str(row.get('PhoneNumbers')).split('|'):
      file.write("\t\t\t\t<PHONENUM>"+number+"</PHONENUM>\n")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When reading a csv file, where each cell can be strings or numerical values.
I have this CSV file that contain this following, 10000,hello 10000,bye 10000,good And, my
I'm reading a .csv file that was created in Excel with the first line
I am reading in a csv file in python, changing a few values, and
Possible Duplicate: Reading csv file I have a comma delimited file: Some Text, More
I'm having trouble in reading csv file that are having alphanumeric data. below is
I am reading a csv file which has following data format 14-Sep-12 ALUMINI 31-Dec-12
I am reading a CSV file and have some values like field 1 field
I am using the following method for reading Csv file content: /// <summary> ///
I am reading csv file via streamreader. Issue is that in csv file if

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.