python - Data import from excel breaking up the values -
taking data excel spreadsheet fourth column
fourth_column = [32.86667, 34.08333, 39.0, 36.63333, -13.2, 30.8, 14.3]
these values latitude , similar values longitude. wondered if there easy way running them each separately through code 1 after other, setting latitude equal take each value in turn.
for value in fourth_column: do_something(value)
Comments
Post a Comment