Python CSV文件获取变量中的下一行

发布于 2025-01-11 08:57:16 字数 238 浏览 0 评论 0原文

我有一个 CSV 文件 (versions.csv)

name,ver
Ford,1.0
Audi,1.1
Toyota,1.2
GM,1.3
BMW,2.0
Honda,2.1
Lexus,3.0

我当前的版本是 GM,1.3 我想使用当前版本,然后在 CSV 文件中查找下一个版本。下一个版本应该是 BMW,2.0

我需要指导。

I have a CSV file (versions.csv)

name,ver
Ford,1.0
Audi,1.1
Toyota,1.2
GM,1.3
BMW,2.0
Honda,2.1
Lexus,3.0

My current version is GM,1.3
i want to use my current version and then find the next version in my CSV file. Next version should be BMW,2.0

I need directions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寻找我们的幸福 2025-01-18 08:57:16

您必须读取 csv 文件,搜索当前版本,在表中获取其索引,然后获取下一个版本。

import pandas as pd

df = pd.read_csv("versions.csv")
df.sort_values("ver", inplace=True)  # forces the data to be sorted
df.reset_index(drop=True, inplace=True)  # reset the indexes of the sorted dataframe

idx = df[df.ver == 1.3].index

new_version = df.iloc[idx + 1]

你的答案应该是这样的:

名称版本
4BMW2.0

You have to read the csv file, search for the current version, take its index on the table, and then take the next version.

import pandas as pd

df = pd.read_csv("versions.csv")
df.sort_values("ver", inplace=True)  # forces the data to be sorted
df.reset_index(drop=True, inplace=True)  # reset the indexes of the sorted dataframe

idx = df[df.ver == 1.3].index

new_version = df.iloc[idx + 1]

Your answer should look like this:

namever
4BMW2.0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文