将一列分为两部分并合并成大熊猫

时间:2020-06-12 19:06:51

标签: python pandas

我在excel中有此数据:

enter image description here

我想像下面这样在pandas数据框中读取它:

enter image description here

1 个答案:

答案 0 :(得分:3)

您可以这样做:

df = pd.read_excel('file.xlsx')

df = pd.DataFrame(df['V1'].values.reshape(-1,2), columns=['V1','Value'])

输出:

  V1 Value
0  A     2
1  b     4
2  c     8