简体   繁体   中英

How do I convert data in a single row with multiple columns in python

I have a dataframe that contains data in the below format

在此处输入图像描述

How do I convert this to the following format:

在此处输入图像描述

看来你只需要reshape

>>> pd.DataFrame(df.to_numpy().reshape(-1, 3), columns=['Name', 'ID', 'Marks'])

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM