📅  最后修改于: 2023-12-03 15:19:21.406000             🧑  作者: Mango
Series.to_string() 是熊猫(Pandas)中用于将 Series 数据结构转换成字符串表示的方法。可以用于将数据输出到文件或打印到终端。
Series.to_string(self, buf=None, na_rep='NaN', float_format=None, header=True, index=True, length=False, dtype=None, name=None)
以下是 Series.to_string() 方法所支持的参数:
Series.to_string() 方法返回一个字符串。如果设置了 buf 参数,则结果将写入该缓冲区。
以下是一个简单的 Series 示例:
import pandas as pd
import numpy as np
s = pd.Series({'a': 1, 'b': 2, 'c': np.nan})
print(s.to_string())
输出结果为:
a 1.0
b 2.0
c NaN