Write a program that can be used to determine the liquidity of a company, by means of the “current ratio” and “acid test ratio”.
\[ \frac{\text{Current assests} - \text{Accounts receivable over more than 1 year}}{\text{debts within 1 year} + \text{Liabilities}} \]
\[ \frac{\text{Current assets} - \text{Accounts receivable over more than 1 year} - \text{inventories and orders in progress}}{\text{debts within 1 year} } \]
calculate_current_ratio(...)
with arguments, respectively, for assets, long-term receivables, short-term debts, and liabilities. This function calculates the “current ratio” and returns a string in the form De current ratio van de onderneming bedraagt: VALUE
.calculate_acid_test_ratio(...)
with arguments, respectively, for assets, long-term receivables, short-term debts, and inventories and work in progress. This function calculates the “acid test ratio” and returns a string in the form De acid test ratio van de onderneming bedraagt: VALUE
.round(number, 2)
.