表格Int64转换成字符串
时间: 2023-07-24 16:15:29 浏览: 181
您可以使用 Python 中的 Pandas 库来将 Int64 类型的表格转换为字符串类型,示例如下:
```python
import pandas as pd
创建一个包含 Int64 类的表格
df =.DataFrame({'int_col':.Series([123, 456 dtype='Int64')})
# 将 Int64 类型的表格转换为字符串类型
df['str_col'] = df['int_col'].astype(str)
# 打印转换后的表格
print(df)
```
输出结果为:
```
int_col str_col
0 123 123
1 456 456
```
在上面的示例中,我们使用 `astype()` 方法将 Int64 类型的表格列转换为字符串类型,并将转换后的结果存储在一个新的列中。
阅读全文