Matplotlib - Seaborn Integration
What is wrong with this code to add a title with font size 20?
import matplotlib.pyplot as plt
plt.plot([1,2,3], [4,5,6])
plt.title('My Plot', fontsize=20)
plt.show()