Python 3.x - 从数据框中提取字符串
- 论坛
- Python 3.x - 从数据框中提取字符串
15 浏览
Python 3.x - 从数据框中提取字符串
这个问题已经有了答案:
假设有一个名为df的数据框 -
df = pd.DataFrame(['a'])
我想从这个数据框中提取字符串\'a\'。我尝试通过从stackoverflow答案中尝试以下内容来提取它 -
尝试1 -
print(df.iloc[0]) >>0 a Name: 0, dtype: object
尝试2 -
print(df.astype(str)) >> 0 0 a
请帮助我从数据框中提取字符串\'a\'
admin 更改状态以发布 2023年5月24日