data = [9, 8, 7, 7, 6, 3, 1, -2, -3, -7, -7, -9]
counter = 0
while not data[counter] < 0:
counter += 1
print(data[counter], counter)
или
data = [9, 8, 7, 7, 6, 3, 1, -2, -3, -7, -7, -9]
for counter, temperature in enumerate(data):
if temperature < 0:
print(temperature, counter)
break
но я не очень люблю
break
, это субъективно.
Ну и кривенький однострочничек:
data = [9, 8, 7, 7, 6, 3, 1, -2, -3, -7, -7, -9]
print(*[(temperature, counter) for counter, temperature in enumerate(data) if temperature < 0][0])