Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Cùng tham gia nhóm của FuOverflow trên Facebook https://www.facebook.com/groups/nvh2fuoverflow
def plot_usd_trend():
usd_list = []
date_list = []
for date in data:
usd_list.append(date['USD'])
date_list.append(date['date'])
plt.figure(figsize=(11,9))
plt.plot(date_list,usd_list,marker='o')
plt.xlabel("Date")
plt.ylabel("USD Rate")
plt.title("USD Exchange Rate Over Time")
plt.savefig("usd_trend.png")
plt.xticks(rotation=45)
plt.show()