Lab1
Write a Python program to calculate the ROI (Return of investment) with the steps below
Create a variable earning and assign it value to 3765432.
Create the variable invest and assign it value to 1000000.
Create the variable roi and assign the formula
$roi = \frac{Earnings - Invest}{Invest}$
You can find more Markdown syntax about writing mathematical expressions hereDisplay the result
1 | Earnings = 3765432 |