私は、それはそれを変換リストリストにバック[Pythonの]
を編集するStringに一覧からの変換についての問題のGot私は、ファイルのテキストコンテンツにこれらの名前を持つ
Roby
Bucky
johan
それから私は、私は、このコード
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
を行うと、私はトンを持って、それぞれ1 OK:1
の横に追加します彼の結果 ['RobyOk:1', 'BuckyOk:1', 'johan']
私はstrip
とreplace('[','')
任意のアイデアを試してみました[ , '
これらの事を削除したい ?
データを1つの文字列からリストに変換し、文字列に戻した後、リストに戻すことはほとんどありません(出力のためにもう一度文字列に変換することのみです)。 (あなたの場合、 'readlines'の出力はおそらく理想的です)、最後にダウングレードするだけです。基本的に、' str() 'を取り除くと、あなたは必要ありません – SingleNegationElimination