Matplotlib - Interactive Features
What will happen when this code is executed?
import matplotlib.pyplot as plt
import matplotlib
matplotlib.use('TkAgg')
plt.plot([1, 2, 3], [4, 5, 6])
plt.show()