以下のコードで変数`temp`に格納される値の型は何ですか? ```python response = requests.get('https://api.weather.com') weather_data = response.json() temp = weather_data['current']['temp_C'] ```