creditrating/BM02_指标计算/资产质量/固有资产不良率.py

24 lines
503 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
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
result = p.固有不良资产 / p.信用风险资产合计 * 100
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"