indexcalculation/基本信用评级指标/盈利能力/EBIT利润率.py

25 lines
597 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 = "EBIT利润率%"
router = APIRouter()
class Params(BaseModel):
利润总额: float
计入财务费用的利息支出: float
营业收入: float
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
result = (p.利润总额 + p.计入财务费用的利息支出) / p.营业收入 * 100
return round(result, 2)
except ZeroDivisionError:
return "+inf" # 此处本应为算式无意义,特殊处理为正无穷大
except Exception:
return "计算错误"