Suppose you want to create a Bubble chart with only two variables. In fact, this is a basic scatter plot.
Write down the line that creates a basic scatter plot.
import matplotlib.pyplot as plt
months = range(1, 13)
avg_temperature = [8, 12, 15, 20, 21, 23, 24, 23, 23, 20, 14, 11]
# Your line of code here
plt.show()