我嘗試了一段時間迭代字符串列表並刪除字符串的第一個字,通過追加剩餘的串到另一個列表,這裏就是我寫道:迭代一個字符串列表,並將所有字符串附加到另一個字符串,除了第一個字
from sys import argv
my_file = argv[1]
output_list = []
count = 1
with open(my_file) as input_file:
for line in input_file.readlines():
while count < len(line.split(' '):
ouput_list.append(line.split(' ')[count])
count += 1
count = 0
with open('out_file.txt', 'w') as output_file:
for line in output_list:
output_file.write(line)
一切似乎都到位,但我得到一個語法錯誤......我在想什麼?
提前致謝!
至少告訴我們您做了什麼語法錯誤。 – 2014-11-21 14:02:55
你錯過了關閉'len(line.split('')'關閉它,並且在你的rog中你也有其他問題 – 2014-11-21 14:07:02