Here is how to multiply and divide on a Pandas DataFrame using Python.
Sample data frame
Multiply
On columns
On rows
On rows, one can do a cumulative product using the .cumprod() method.
Which multiplies every column by the last one, following the index.
Divide
On columns
Here you are, you know pretty much everything that you would need about multiplication and division with Pandas using Python.