首页 > 其他 > 详细

列处理——变形

时间:2016-01-05 22:12:27      阅读:234      评论:0      收藏:0      [点我收藏+]
#input is a list named legislators, the first two elements looks like this:
#[[‘Bassett‘, ‘Richard‘, ‘1745-04-02‘, ‘M‘, ‘sen‘, ‘DE‘, ‘Anti-Administration‘], [‘Bland‘, ‘Theodorick‘, ‘1742-03-21‘, ‘‘, ‘rep‘, ‘VA‘, ‘‘]]
#Bassett Richard is the name
#1745-04-02 is bithdate
#M is gender

对生日列做处理

  • 截取有用的部分:年份
birth_years = []
for row in legislators:
    birth_list=row[2].split(-)
    birth_years.append(birth_list[0])
  • 插入新列
for i,row in enumerate(legislators):
    row.append(birth_years[i])

 

列处理——变形

原文:http://www.cnblogs.com/arsh/p/5103675.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!