gpt4 book ai didi

python - 试图从文本文件中显示城市的最高温度,但我拥有所有城市和温度

转载 作者:可可西里 更新时间:2023-11-01 15:02:26 25 4
gpt4 key购买 nike

我正在尝试开发一个 mapreduce 程序来显示文本文件中最高温度的城市。

文本文件“temperatures.txt”包含以下内容(城市和温度):

城市 10

城市 2 11

城市 3 4

City4 20

...

city10000 22

在这个例子中,我想要的结果是打印最后一行,它有更高的温度:

city10000 22

我有这样的 reducer 文件:

import sys

current_city = None
current_max = 0
city = None

for line in sys.stdin:
line = line.strip()

city, temperature = line.rsplit('\t', 1)

try:
temperature = float(temperature)
except ValueError:
continue

if current_city == city:
if temperature > current_max:
current_max = temperature
else:
if current_city:
print '%s\t%s' % (current_city, current_max)
current_max = temperature
current_city = city

if current_city == city:
print '%s\t%s' % (current_city, current_max)

但是,当我测试这个 reducer.py 文件时,我总是得到相同的结果,我总是得到所有的城市和温度,就像这样:

城市 10

城市 2 11

城市 3 4

City4 20

...

city10000 22

你看到我的 reducer 文件有什么问题了吗?

我只想显示最高温度的城市,在这种情况下,最高温度的城市是 city10000,所以我只想要这个结果:

city10000 22

最佳答案

首先让我解释一下我认为代码哪里出了问题,然后我将提供一个工作示例。问题出在 reducer 中的 if else 语句上。

这是if部分:

if current_city == city:
if temperature > current_max:
current_max = temperature

只有在同一个城市被列出两次时才会发生这种情况,更重要这是代码检查新城市的温度是否大于的唯一地方current_max

我怀疑大部分时间会花在声明的else部分:

else:
if current_city:
print '%s\t%s' % (current_city, current_max)
current_max = temperature
current_city = city

这里有两个问题:

  1. current_city 被定义时,程序总是打印一行。这就是从 reducer 中生成城市列表的原因。

  2. 该程序还协助 current_max 变量,而不检查 temperature 是否更大。

这是一个应该可以工作的 reducer :

import sys

current_city = None
current_max = 0
city = None

for line in sys.stdin:
line = line.strip()

city, temperature = line.rsplit('\t', 1)

try:
temperature = float(temperature)
except ValueError:
continue

if temperature > current_max:
current_max = temperature
current_city = city

print '%s\t%s' % (current_city, current_max)

我要提的最后一件事是设置 current_max = 0 不是一个好主意。摄氏温度很容易低于零。如果您的城市列表和温度是在冬季,则可能没有一个城市的温度超过 0,代码将返回:

None    0.0 

关于python - 试图从文本文件中显示城市的最高温度,但我拥有所有城市和温度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29671640/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com