Can I store slicers in a variable? (Pandas/Python) [duplicate]

匿名 (未验证) 提交于 2019-12-03 02:33:02

问题:

I'm just wondering if I can do something like:

df.loc['1990':'2000']

by doing something like:

my_slice = '1990':'2000' df.loc[my_slice]

What I've written doesn't work, but is there something similar that does?

回答1:

Yes, but you don't write slices like that. You write slice('1900', '2000', None) instead.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!