During the Analyze Data With Python course, there is a project:
# create your figure here
plt.figure(figsize=(12,8))
ax1 = plt.subplot(1,2,1)
x_values = range(len(months)
plt.plot(x_values,visits_per_month)
I’m in the step above and I just can’t uderstand why the platform returns a error of invalid syntaxe at this line: plt.figure(figsize=(12,8)).
What is wrong with the syntax???!!!