79378438

Date: 2025-01-22 16:04:14
Score: 1
Natty:
Report link

I suggest you use only one plt.show() at the end of all plotting commands. So your code should look like this:

import matplotlib.pyplot as plt 
plt.plot([1,2,3,4,5]) 

plt.plot([2,2,2,2,2]) 
plt.show()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: H.B