Python CSV文件获取变量中的下一行
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须读取 csv 文件,搜索当前版本,在表中获取其索引,然后获取下一个版本。
你的答案应该是这样的:
You have to read the csv file, search for the current version, take its index on the table, and then take the next version.
Your answer should look like this: