用法:
Series.str.get(i)
从指定位置的每个组件中提取元素。
从 Series/Index 中每个元素的列表、元组或字符串中提取元素。
- i:int
要提取的元素的位置。
- 系列或索引
参数:
返回:
例子:
>>> s = pd.Series(["String", ... (1, 2, 3), ... ["a", "b", "c"], ... 123, ... -456, ... {1:"Hello", "2":"World"}]) >>> s 0 String 1 (1, 2, 3) 2 [a, b, c] 3 123 4 -456 5 {1:'Hello', '2':'World'} dtype:object
>>> s.str.get(1) 0 t 1 2 2 b 3 NaN 4 NaN 5 Hello dtype:object
>>> s.str.get(-1) 0 g 1 3 2 c 3 NaN 4 NaN 5 None dtype:object
相关用法
- Python pandas.Series.str.get_dummies用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.replace用法及代码示例
- Python pandas.Series.str.endswith用法及代码示例
- Python pandas.Series.str.isspace用法及代码示例
- Python pandas.Series.str.isdigit用法及代码示例
- Python pandas.Series.str.wrap用法及代码示例
- Python pandas.Series.str.isalnum用法及代码示例
- Python pandas.Series.str.zfill用法及代码示例
- Python pandas.Series.str.partition用法及代码示例
- Python pandas.Series.str.isnumeric用法及代码示例
- Python pandas.Series.str.startswith用法及代码示例
- Python pandas.Series.str.count用法及代码示例
- Python pandas.Series.str.rpartition用法及代码示例
- Python pandas.Series.str.strip用法及代码示例
- Python pandas.Series.str.removesuffix用法及代码示例
- Python pandas.Series.str.rsplit用法及代码示例
- Python pandas.Series.str.islower用法及代码示例
- Python pandas.Series.str.removeprefix用法及代码示例
- Python pandas.Series.str.len用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.str.get。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。