eland.Series.rfloordiv#
- Series.rfloordiv(left: Series) Series #
返回系列和左侧的整数除法,逐元素(二元运算符 floordiv //)。
参数#
left: eland.Series
返回值#
eland.Series
示例#
>>> df = ed.DataFrame('http://localhost:9200', 'ecommerce').head(5) >>> df.taxful_total_price 0 36.98 1 53.98 2 199.98 3 174.98 4 80.98 Name: taxful_total_price, dtype: float64 >>> 500.0 // df.taxful_total_price 0 13.0 1 9.0 2 2.0 3 2.0 4 6.0 Name: taxful_total_price, dtype: float64