I've saved a .txt file of data points onto my desktop. I wrote my script in spyder as follows:
from pylab import *
data = genfromtxt('data.txt', skip_header = 5, skip_footer = 6)
print data
This returns an error code saying "data.txt not found" I've spent over 30 min trying to figure this out and I'm sure it's going to be a trivial fix. What am I missing?