- 問題
- 答え
- 解説
次の Python コードの出力はどれでしょうか?
Python コード:
import pandas as pd temp_data = [22, 24, 19, 24, 28, 30, 27, 30] days = pd.date_range( start='2023-08-01', periods=8, freq='D') temp_series = pd.Series(temp_data, index=days) max_temp = temp_series.max() max_day = temp_series.idxmax() print(f"最高温度: {max_temp}度 \t", f"最高日付: {max_day.date()}")
回答の選択肢:
(A) 最高温度:30度 日付:2023-08-06
(B) 最高温度:30度 日付:2023-08-08
(C) 最高温度:30度 日付:2023-08-06,2023-08-08
(D) 最高温度:30度 日付:Null