indexcalculation/基本信用评级指标/财务杠杆/总债务资本化比率.py

30 lines
619 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
总债务资本化比率(%
"""
from fastapi import APIRouter
from pydantic import BaseModel
INDEX = "总债务资本化比率(%"
router = APIRouter()
class Params(BaseModel):
短期借款: float
长期借款: float
所有者权益: float
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
m = p.短期借款 + p.长期借款
d = p.短期借款 + p.长期借款 + p.所有者权益
result = m / d * 100
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"