I have two lists,
data = {{1000,800}, {1500,3300}}
and
data1 = {{0,0}, {1,0}}
I combined them and exporter them:
Export["...path", {data, data1}, "List"]
In a different file, I import it:
datar = Import["...path", "List"]
Of which d1 = datar[[1]] seems to be a list, but when I plot
ListPlot[d1]
it says that it's not " a list of numbers or pairs of numbers.

Exportwith"List"means exporting a 1D array; with"Table"you couldExporta matrix. For more complicatedLists, see this answer. – corey979 Nov 23 '16 at 00:08