Q. Write a
program to input the total liabilities and shareholders' equity of a company
and print its D/E
ratio as
Total Liabilities / Total Shareholders’ Equity
Answer =
Total_Liabilities = float(input("Enter the Total Liabilities :-")) Total_Shareholders_Equity = float(input("Enter the Total Shareholders’ Equity :-")) print("D ratio = ", Total_Liabilities / Total_Shareholders_Equity )
Need output of the thise
ReplyDeletePost a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )