How inplace attribute works in python?

前端 未结 0 1487
梦谈多话
梦谈多话 2021-02-06 12:36
import pandas as pd
s=pd.Series(data=[45,20,35,50,60],index=[\'a\',\'b\',\'c\',\'d\',\'e\'])
s.drop("a",inplace=False)
print(s)
a    45
b    20
c    35
d    50         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题