gpt4 book ai didi

python - 将列表转换为行

转载 作者:行者123 更新时间:2023-11-28 22:34:54 26 4
gpt4 key购买 nike

在 python 中将列表转换为单独元素的有效方法是什么?

我有一个看起来像这样的数据集;

['StudentA','80','94','93']
['StudentB','93','94']

我想 reshape 数据,让每个学生/分数都有自己的行;

['StudentA','80']
['StudentA','94']
etc...

最佳答案

你可以像这样使用列表推导式:

data = ['StudentA','80','94','93']
res = [[data[0], x] for x in data[1:]]

这会将 res 设置为 [['StudentA', '80'], ['StudentA', '94'], ['StudentA', '93']].

关于python - 将列表转换为行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38640719/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com