Matplotlib - Interactive Features
Identify the error in this code:
import matplotlib
matplotlib.use('NonExistentBackend')
import matplotlib.pyplot as plt
plt.plot([1,2],[3,4])
plt.show()