打印没有换行符的字典?

时间:2015-04-29 00:02:36

标签: python dictionary file-io printing formatting

我试图在我的打印输出上设置格式,并且比它应该更复杂。我的目标是让我的代码在字典中读取,将其转换为列表,对其进行排序,然后将其打印回文本文件,如

"字符串" "浮动"

"字符串" "浮动"

"字符串" "浮动"

而是打印

的字符串

string

查看我的字典的原始数据,如下所示:

{'blahblah\n': 0.3033367037411527, 'barfbarf\n': 0.9703779366700716, 

我怀疑\ n换行命令与此有关。但我似乎无法缓解它。我的代码如下:

#Open the text file and read it back it
h = open('File1.txt', 'r')
my_dict = eval(h.read())

#Print out the dictionary
print "Now tidying up the data......"
z = my_dict

#Turn the dictionary into a list and print it
j = open('File2.txt', 'w')
z = z.items()
z.sort(key=lambda t:t[1])
z.reverse()
for user in z:
    print >> j, user[0], user[1]
j.close()

这段代码完全适用于我程序的其他部分。出于某种原因,它在这里遇到了问题。

1 个答案:

答案 0 :(得分:2)

\n是换行符。写入文件,显示为换行符。您应该在打印之前将其删除:

print >> j, user[0].strip(), user[1].strip()

甚至更好,在转到列表时这样做:

z = [item.strip() for item in z.items()]