creditrating-wcq/IndexCalculation/基本信用评级指标/经济实力/人均GDP_全国平均GDP.py

25 lines
468 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 = "人均GDP/全国平均GDP"
router = APIRouter()
class Params(BaseModel):
人均GDP: float
全国平均GDP: float
@router.post("/{}".format(INDEX))
def func(p: Params):
try:
result = p.人均GDP / p.全国平均GDP
return round(result, 2)
except ZeroDivisionError:
return "算式无意义"
except Exception:
return "计算错误"