首页 > 其他 > 详细

列处理——格式转换(考虑非法值)

时间:2016-01-05 22:19:57      阅读:148      评论:0      收藏:0      [点我收藏+]
#first two elements of list legislators.
#[[‘Bassett‘, ‘Richard‘, ‘1745-04-02‘, ‘M‘, ‘sen‘, ‘DE‘, ‘Anti-Administration‘, ‘1745‘], [‘Bland‘, ‘Theodorick‘, ‘1742-03-21‘, ‘M‘, ‘rep‘, ‘VA‘, ‘‘, ‘1742‘]]
#1745 is extract from 1745-04-02 as the birth year, but not all elements have valid birth years. Some birth year is ""
  • 字符转换成数字格式
for row in legislators:
    try:
        row[7]=int(row[7])
    except Exception:
        row[7]=0

 

列处理——格式转换(考虑非法值)

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

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