Simple ROI Python Calculator - Five Minute Python Scripts - Full Code Along Walkthrough

preview_player
Показать описание
Start from scratch tutorial on how to make a Python Script that calculates return on investment.

Full code along step by step.

Derrick Sherrill Five Minute Python Tutorial Series #3

*****************************************************************
Code from this tutorial and all my others can be found on my GitHub:

Check out my website:

If you liked the video - please hit the like button. It means more than you know. Thanks for watching!!

Useful Links
-----------------------------------------------------------------------------------------------------------------
Python Download:
(Remember Python 3 is the future!)

I use Atom Text Editor for all my tutorials
Atom Text Editor:

Packages I often use in Python tutorials:
-Pandas
-Numpy
-xlrd
-TensorFlow
-Matplotlib
-Django Framework
-Beautiful Soup
(Install through Terminal $pip3 install ....)

Other Useful Services sometimes featured:
-Amazon Web Services (AWS)
-Microsoft Azure
-Google Cloud
-Juypter Notebooks

Always looking for suggestions on what video to make next -- leave me a comment with your project! Happy Coding!
Рекомендации по теме
Комментарии
Автор

Investment = 60000
Rent = 200
Loss = 1200
def ROI(Investment, Rent, Loss):
NetProfit = Rent * 12 - Loss
ROI = (NetProfit/Investment)*100
print(ROI)

ROI(Investment, Rent, Loss)

casewhite