I have a created an array from text file data that has elements that look like this:
19480101 22.4 2.24
19490101 33.1 3.31
However, each of these rows is just one element in the array. This results in the array being a 1-D column. How can I split it up at the whitespaces to create an array with 3 columns instead of one?
.split()method?