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 电子表格中获取数据,我的第四列看起来像
fourth_column = [32.86667, 34.08333, 39.0, 36.63333, -13.2, 30.8, 14.3]
这些都是纬度值,我得到相似的经度值。我想知道是否有一种简单的方法可以通过我的代码一个接一个地分别运行它们,将纬度设置为等于将依次获取每个值的值。
for value in fourth_column: do_something(value)