更新:在 python 中对输出从最高到最低排序列表

发布于 2024-11-06 09:07:49 字数 246 浏览 2 评论 0原文

    for x in letters:
         frequency[x]+=1
    for x in frequency:
        print x,frequency[x],frequency[x]/float(n)    

抱歉,但我对编程和一切都很陌生,我试图将输出从频率[x]/float(n)的最高值到最低值进行排序。有没有什么方法可以仅通过打印命令对其进行排序?

非常感谢!

    for x in letters:
         frequency[x]+=1
    for x in frequency:
        print x,frequency[x],frequency[x]/float(n)    

Sorry but I'm fairly new to programming and everything and I'm trying to get the output to be sorted from highest value of frequency[x]/float(n) to lowest value. Is there any method of being able to sort it just through the printing command?

Thanks very much!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

烂人 2024-11-13 09:07:49

对于按键:

sorted(frequency, key=lambda x: frequency[x], reverse=True)

For the keys:

sorted(frequency, key=lambda x: frequency[x], reverse=True)
她比我温柔 2024-11-13 09:07:49

for x in sorted(frequency, key=lambda y: frequency[y]/float(n), reverse=True):
    print x,frequency[x],frequency[x]/float(n)

Do

for x in sorted(frequency, key=lambda y: frequency[y]/float(n), reverse=True):
    print x,frequency[x],frequency[x]/float(n)
软糯酥胸 2024-11-13 09:07:49

这应该可以解决问题:

freqs = sorted([frequency[x]/float(n) for x in frequency], reverse=True)

如果您希望它更像上面的 print 语句,请尝试以下操作:

for (fxn, fx, x) in sorted([(frequency[x]/float(n), frequency[x], x) for x in frequency], reverse=True):
    print x, fx, fxn

This should do the trick:

freqs = sorted([frequency[x]/float(n) for x in frequency], reverse=True)

If you want it more like the print statement you have above, try this:

for (fxn, fx, x) in sorted([(frequency[x]/float(n), frequency[x], x) for x in frequency], reverse=True):
    print x, fx, fxn
美人骨 2024-11-13 09:07:49

答案就在我眼前闪现!是的,使用排序。请在此处了解更多信息。

Answers flashing right before my eyes! Yes, use sorted. Read more here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文