Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Excelスプレッドシートからデータを取得すると、4番目の列が次のようになります
fourth_column = [32.86667, 34.08333, 39.0, 36.63333, -13.2, 30.8, 14.3]
これらはすべて緯度の値であり、経度についても同様の値が得られます。私は、緯度を順番にそれぞれの値を取る何かに等しくなるように設定して、コードを介してそれらを個別に実行する簡単な方法があるかどうか疑問に思いました。
for value in fourth_column: do_something(value)