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

  • Home
  • SEARCH
  • 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 6009203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:56:14+00:00 2026-05-23T01:56:14+00:00

I have an XML file that contains an illegal character, I am iterating through

  • 0

I have an XML file that contains an illegal character, I am iterating through the file, removing the character from all of the lines and storing the lines in a list. I now want to write those same lines back into the file and overwrite what is already there.

I tried this:

file = open(filename, "r+")
#do stuff

Which is only appending the results to the end of the file, I would like to overwrite the existing file.

And this:

file = open(filename, "r")
#read from the file
file.close()

file = open(filename, "w")
#write to file
file.close()

This gives me a Bad File Descriptor error.

How can i read and write to the same file?

Thanks

  • 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-23T01:56:14+00:00Added an answer on May 23, 2026 at 1:56 am

    The reason you’re appending to the end of the file the whole time is that you need to seek to the beginning of the file to write your lines out.

    with open(filename, "r+") as file:
        lines = file.readlines()
    
        lines = [line.replace(bad_character, '') for line in lines]
    
        file.seek(0)
        file.writelines(lines)
        file.truncate()         # Will get rid of any excess characters left at the end of the file due to the length of your new file being shorter than the old one, as you've removed characters.
    

    (Decided to just use the context manager syntax myself.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a big XML file (~20 MB) that contains among others such lines:
I have an XML configuration file that contains a list of documents with field
I have an xml file that contains its element like <ab:test>Str</ab:test> When I am
Me again... I have an XML File that contains different categories which I would
I have an XML file format that contains a structure of questions: <question id=q101>
For an XML file I am creating I have data that contains a bullet
Let's say I have an existing trivial XML file named 'MyData.xml' that contains the
I have a problem. I have an XML file that contains information about 100
I have a semi xml formatted file that contains line with the following format:
I have an XML file that contains price value.I want to sort my table

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.