Can someone please point out what the point of assigning the result(s) of a plot to a dummy variable _ is like so:
_ = plt.plot(x_vers, y_vers, marker = '.', linestyle = 'none')
Usually I see code like this:
plt.plot(x_vers, y_vers, marker = '.', linestyle = 'none')
Is it better practice to use the dummy _ even if it is never used? if so, why?