📜  数据类型转换-I - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:11.892000             🧑  作者: Mango

代码示例1
>>> s = pd.Series(["8", 6, "7.5", 3, "0.9"]) # mixed string and numeric values
>>> s
0      8
1      6
2    7.5
3      3
4    0.9
dtype: object

>>> pd.to_numeric(s) # convert everything to float value
0    8.0
1    6.0
2    7.5
3    3.0
4    0.9
dtype: float64