I tried to run this code in spyder IDE of anaconda but it's not working
import matplotlib.pyplot as plt
plt.plot([1,2,3,4,5],[1,4,9,16,25])
plt.show()
The above code is returning error as follows: TypeError: 'tuple' object is not callable
I am not able to figure out the problem.Please help