本文简要介绍
pyspark.pandas.Series.str.repeat
的用法。用法:
str.repeat(repeats: int) → ps.Series
复制系列中的每个字符串。
- repeats:int
重复字符串给定的次数 (int)。不支持 int 的序列。
- 系列对象
由输入参数repeats 指定的重复字符串对象的系列或索引。
参数:
返回:
例子:
>>> s = ps.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
相关用法
- Python pyspark Series.str.replace用法及代码示例
- Python pyspark Series.str.rjust用法及代码示例
- Python pyspark Series.str.rstrip用法及代码示例
- Python pyspark Series.str.rindex用法及代码示例
- Python pyspark Series.str.rsplit用法及代码示例
- Python pyspark Series.str.rfind用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.str.slice_replace用法及代码示例
- Python pyspark Series.str.lstrip用法及代码示例
- Python pyspark Series.str.len用法及代码示例
- Python pyspark Series.str.slice用法及代码示例
- Python pyspark Series.str.isnumeric用法及代码示例
- Python pyspark Series.str.endswith用法及代码示例
- Python pyspark Series.str.swapcase用法及代码示例
- Python pyspark Series.str.isdecimal用法及代码示例
- Python pyspark Series.str.istitle用法及代码示例
- Python pyspark Series.str.match用法及代码示例
- Python pyspark Series.str.strip用法及代码示例
- Python pyspark Series.str.ljust用法及代码示例
- Python pyspark Series.str.count用法及代码示例
- Python pyspark Series.str.title用法及代码示例
- Python pyspark Series.str.upper用法及代码示例
- Python pyspark Series.str.isupper用法及代码示例
- Python pyspark Series.str.pad用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.str.repeat。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。