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 ?
readlinesis probably ideal), and only downgrade it at the end. basically, get rid of thestr(), you don't need it and it's giving you more trouble than it can solve. – TokenMacGuy Jul 16 '11 at 0:46