请叫我攻城狮hh 2020-12-10 19:02 采纳率: 0%
浏览 25

小白求助! Python 行列的处理

各位大神好
我在做项目练习时遇到这个代码
来自 https://en.wikipedia.org/wiki/All-time_Olympic_Games_medal_table


import pandas as pddf = pd.read_csv('olympics.csv', index_col=0, skiprows=1)
for col in df.columns:   
   if col[:2]=='01':        
         df.rename(columns={col:'Gold'+col[4:]}, inplace=True)   
   if col[:2]=='02':        
         df.rename(columns={col:'Silver'+col[4:]}, inplace=True)   
   if col[:2]=='03':        
         df.rename(columns={col:'Bronze'+col[4:]}, inplace=True)   
    if col[:1]=='№':      
 
          df.rename(columns={col:'#'+col[1:]}, inplace=True)
     names_ids = df.index.str.split('\s\(') # split the index by '('df.index = names_ids.str[0] # the [0] element is the country name (new index) df['ID'] = names_ids.str[1].str[:3] # the [1] element is the abbreviation or ID (take first 3 characters from that)df = df.drop('Totals')df.head()

我自己看了很久 可是就是不知道加粗部分的操作是什么含义
求大神帮忙指点迷津啊
万分感激

  • 写回答

1条回答 默认 最新

  • 关注
    for col in df.columns:   
       if col[:2]=='01':        
             df.rename(columns={col:'Gold'+col[4:]}, inplace=True) 

      col:某一个列名

    col[:2] 列名取前2个字符, 如果这列的前2个字符 是 01的话

    将这列的列名修改 改为 : Gold+原来的列名从第4个位置到最后

    评论

报告相同问题?

悬赏问题

  • ¥15 静电纺丝煅烧后如何得到柔性纤维
  • ¥15 (标签-react native|关键词-镜像源)
  • ¥100 照片生成3D人脸视频
  • ¥15 伪装视频时长问题修改MP4的时长问题,
  • ¥15 JETSON NANO
  • ¥15 VS开发qt时如何在paintgl函数中用pushbutton控制切换纹理
  • ¥20 关于 openpyxl 处理excel文件地问题
  • ¥15 MS中不知道高分子的构型怎么构建模型
  • ¥60 QQOP数据,什么是op数据号,怎么提取op数据!能不能大量提取(语言-c语言)
  • ¥15 matlab代码 关于微分方程和嵌套的分段函数。