1
私はPythonで文字列を分割したことがないので、ここで何が問題になっているのか分かりません。分割した文字列を分割できない型
import pyowm
owm = pyowm.OWM('####################')
location = owm.weather_at_place('Leicester, uk')
weather = location.get_weather()
weather.get_temperature('celsius')
temperature = weather.get_temperature('celsius')
print(temperature[5:10])
エラーが
sudo python weather.py
Traceback (most recent call last):
File "weather.py", line 10, in <module>
print(temperature[5:10])
TypeError: unhashable type
あなたは 'temperature'が文字列であるという印象の下にありますか?それは文字列ではありません。それは私の言葉のように見えます。 – user2357112
@ user2357112私は暗闇の中でPythonを使い始めています。ありがとうございます。ここから試してみてください。 – NathanK
辞書を文字列に変換して辞書に入れないでください'注文は保証されておらず、ごみはごみ箱から出る可能性が高いです。 –