#!/usr/bin/python3.8 import yfinance as yf import sys eurzar = yf.Ticker(sys.argv[1]) print(round(eurzar.history(period="1m").Close.to_list()[0], 4))