1. 콩나무 최대 height 찾기 tree = pd.read_csv("주어진 csv") tree_df = tree.sort_values("height", ascending=False) print(tree_df.iloc[:1]) 2. 토끼와 거북이 경주 결과 df = pd.read_csv("주어진 csv") df.set_index("시간", inplace=True) fig, ax = plt.subplots() ax.plot(df['토끼'], label="토끼") ax.plot(df['거북이'], label="거북이") ax.legend(loc="lower right")