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 6135247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T17:27:22+00:00 2026-05-23T17:27:22+00:00

I got a problem, it’s about converting from List to String to edit it

  • 0

I got a problem, it’s about converting from List to String to edit it

I have file text content these name

Roby
Bucky
johan

Then I want to add beside each one OK:1

so i do this code

Names='a.txt' # here is the names
O=open(Names,'r') # we open the file content the names
iamList=O.readlines() # read the name it would be List !
imSting=str(iamList) # convert it to string
Edit=imSting.replace(r"\n","Ok:1") # Editing by adding
noname=Edit
noname=noname.split()
for PT in noname:
    PT.strip('[')
    print PT

and i got this result
['RobyOk:1',
'BuckyOk:1',
'johan']

i want to delete these thing [ , '
i tried strip and replace('[','')

any ideas ?

  • 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-23T17:27:23+00:00Added an answer on May 23, 2026 at 5:27 pm

    You don’t need to convert it to a string to add Ok:1 at the end of each element.

    You could do it with a list comprehension like this:

    iamNewList = [e.rstrip() + 'Ok:1' for e in iamList]
    

    Alternatively, to be less fancy, you could do this:

    iamNewList = []
    for e in iamList:
        iamNewList.append(e.rstrip() + 'Ok:1')
    

    Note, rstrip strips all whitespace, such as newlines, off of the end of the string, which I assume is what you want.

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

Sidebar

Related Questions

Got a problem with a query I'm trying to write. I have a table
I got a problem with this linq query: from PersistedFileInfo fi in m_Database from
I've got problem sending an array of string as parameter to a web service
I fully understand the use of list in lisp but I 've got problem
I have a bunch of posts stored in text files formatted in yaml/textile (from
I got problem with some special characters. I have defined the meta tag as
I got problem with two AJAX calls. I'm calling it from a jquery object.
I got problem inserting the string AM/PM to my mySQL table $timeFormat = mysql_real_escape_string($_POST['timeFormat']);
Hi I've got problem with foreach statement. I have my controller method: public ActionResult
I've got problem while including header files, in every header file i use #pragma

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.