print ("*** Application for Total Return Formula ***")
print ("\n")
CV = float(input("Please enter the Current vlaue of shares:"))
CD = float(input("Please enter the Cash Distributions value:"))
IN = float(input("Please enter the Initial Investment value:"))
#Mutual Fund Total Return Formula:-
#Total_Profit_Loss = Current Value of Shares + Cash Distributions – Initial Investment
TPL = CV + CD - IN
print ("The total return formula value is:" , (TPL))
===============================================================
https://github.com/bornfreesoul/PythonLessons
https://www.youtube.com/channel/UCe0rLJmSQXNoK2Mo2eMVuvg
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.