我有一个字符串列表。
theList = ['a', 'b', 'c']
我想将整数添加到字符串中,从而产生如下输出:
newList = ['a0', 'b0', 'c0', 'a1', 'b1', 'c1', 'a2', 'b2', 'c2', 'a3', 'b3', 'c3']
我想将其保存为 .txt 文件,格式如下:
a0
b0
c0
a1
b1
c1
a2
b2
c2
a3
b3
c3
尝试:
theList = ['a', 'b', 'c']
newList = []
for num in range(4):
stringNum = str(num)
for letter in theList:
newList.append(entry+stringNum)
with open('myFile.txt', 'w') as f:
print>>f, newList
现在我可以保存到文件 myFile.txt 但文件中的文本为:
['a0', 'b0', 'c0', 'a1', 'b1', 'c1', 'a2', 'b2', 'c2', 'a3', 'b3', 'c3']
非常欢迎任何有关实现我的目标的 Pythonic 方法的提示,