pandas.Series.str.repeat #

系列.str。重复(重复) [来源] #

复制系列或索引中的每个字符串。

参数
重复int 或 int 序列

所有(int)的值相同或每个(序列)的值不同。

返回
系列或 pandas.Index

由输入参数重复指定的重复字符串对象的系列或索引。

例子

>>> s = pd.Series(['a', 'b', 'c'])
>>> s
0    a
1    b
2    c
dtype: object

单个 int 在系列中重复字符串

>>> s.str.repeat(repeats=2)
0    aa
1    bb
2    cc
dtype: object

int 序列重复 Series 中相应的字符串

>>> s.str.repeat(repeats=[1, 2, 3])
0      a
1     bb
2    ccc
dtype: object