Skip to content
# Start coding here... 
pip install jupyterlab
import matplotlib.pyplot as plt
year = [1950,1970,1990,2010]
pop =[2.51,5.12,3.56,4.56]
plt.scatter(year, pop)
plt.show()