Python 数据类型转换操作

数据类型转换的一些操作

  1. string表示数值的list列表转为int/float型列表

    
    # python 3.5
    
    a = ['1', '2', '3']
    b = list(map(int, a)) # 转为整型
    c = list(map(float, a)) # 转为浮点型
  2. text/string转为numpy中ndarray类型

    
    # python 3.5, numpy 1.12
    
    
    # 数据输入格式为数字以‘,’分隔
    
    import numpy as np
    
    line = '1,2,3,4,5'
    x = np.fromstring(line, dtype=int, sep=',')
上一篇:BZOJ 3036: 绿豆蛙的归宿 期望 + 拓扑排序


下一篇:启动mySQL安装出现1067错误