我正在编写一个需要我导入一组数据的代码。我在 python 文件夹中的什么位置保存数据以便程序识别它?
这是我的代码中的一个片段:
from matplotlib.pylab import *
from scipy import optimize
# Read in the data, storing it as two 1D arrays, time and speed
freefall=loadtxt('freefall.data')
time = freefall[:,0]
speed = freefall[:,1]
我要导入的数据文件是 freefall.data。