获取字典中的最大值
我面临着这个问题。我的字典中有 10,000 行,这是其中一行
示例:A (8) C (4) G (48419) T (2) 打印出来时
我想得到“G”作为答案,因为它具有最高的价值。
我目前正在使用 Python 2.4,但我不知道如何解决这个问题,因为我对 Python 还很陌生。
非常感谢您提供的任何帮助:)
I'm facing problem with this. I have 10,000 rows in my dictionary and this is one of the rows
Example: A (8) C (4) G (48419) T (2) when printed out
I'd like to get 'G' as an answer, since it has the highest value.
I'm currently using Python 2.4 and I have no idea how to solve this as I'm quite new in Python.
Thanks a lot for any help given :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是一个解决方案,
我还添加了一个 main 函数,以便该脚本可以用作命令行工具来读取一个文件中的所有行,并将每行具有最高值的密钥写入输出文件。该程序使用迭代器,因此无论输入文件有多大,它都具有内存效率。
对于单行,您可以调用:
并且处理完整的文件:
如果您想要每行最大值的实际 Python 列表,那么您可以使用:
Here's a solution that
I also added a main function so that the script can be used as a command line tool to read all lines from one file and the write the key with the highest value for each line to an output file. The program uses iterators, so that it is memory efficient no matter how large the input file is.
For a single row, you can call:
And to process a complete file:
If you want an actual Python list of every row's maximum value, then you can use:
这将比 d.values() 快得多,因为它使用可迭代。
This will be much faster than say d.values() as it is using an iterable.
请尝试以下操作:
Try the following:
使用正则表达式来分割行。然后对于所有匹配的组,你必须将匹配的字符串转换为数字,获取最大值,并找出对应的字母。
Use regular expressions to split the line. Then for all the matched groups, you have to convert the matched strings to numbers, get the maximum, and figure out the corresponding letter.