标签: python pandas boolean
输入
Series([True, False, True]).replace('fdsa','lkjh')
输出
0 lkjh 1 False 2 lkjh dtype: object
我希望:
0 True 1 False 2 True dtype: bool
这使得使用布尔数据非常烦人。当前行为背后的原因是什么?