pyspark.pandas.Series.rdivmod¶
- 
Series.rdivmod(other: Any) → Tuple[pyspark.pandas.series.Series, pyspark.pandas.series.Series][source]¶
- Return Integer division and modulo of series and other, element-wise (binary operator rdivmod). - Parameters
- otherSeries or scalar value
 
- Returns
- 2-Tuple of Series
- The result of the operation. 
 
 - See also