creditrating/BM02_指标计算/财政收支/财政平衡率.py

28 lines
517 B
Python
Raw Permalink 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 "计算错误"