def createFile(n):
filename = "myFile.txt"
outputFile = open(filename, "w")
outputFile.write("WWWW 2 77777 54 M 888 90 6.7 100 No yyy kk 888 zz F too yy 8.8 123 xxx yyy pp")
outputFile.close()
我将在python上获取此处的数据,并在写入时将其垂直对齐到文件。什么是最有效的方法?
最佳答案
我相信最有效的方法是遍历字符串,然后写入文件:
filename = "myFile.txt"
outputFile = open(filename, "w")
string = "WWWW 2 77777 54 M 888 90 6.7 100 No yyy kk 888 zz F too yy 8.8 123 xxx yyy pp"
outputFile.write("\n".join(item for item in string.split(" ")))
outputFile.close()
myFile.txt
中的输出:WWWW
2
77777
54
M
888
90
6.7
100
No
yyy
kk
888
zz
F
too
yy
8.8
123
xxx
yyy
pp
关于python - 如何在python中垂直对齐数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13655590/