Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.

Examples

In [1]:
import numpy as np
import pandas as pd
In [2]:
df = pd.DataFrame({'angles': [0, 3, 4],
                   'degrees': [360, 180, 360]},
                  index=['ellipse', 'triangle', 'rhombus'])
df
Out[2]:
angles degrees
ellipse 0 360
triangle 3 180
rhombus 4 360

Divide by constant with reverse version:

In [3]:
df.div(10)
Out[3]:
angles degrees
ellipse 0.0 36.0
triangle 0.3 18.0
rhombus 0.4 36.0
In [4]:
df.rdiv(10)
Out[4]:
angles degrees
ellipse inf 0.027778
triangle 3.333333 0.055556
rhombus 2.500000 0.027778