关于 实例化后变量没有输出

来源:3-1 hello world 接口给后端传 COVID-19 感染数据

weixin_慕工程3312477

2023-08-29 14:55

class Sound(BaseModel):
    sound: str


class Dog(BaseModel):
    birthday: date
    weight: float = Optional[None]
    sound: List[Sound]  # 不同的狗有不同的叫声。递归模型(Recursive Models)就是指一个嵌套一个


dogs = Dog(birthday=date.today(), weight=6.66, sound=[{"sound": "wang wang ~"}, {"sound": "ying ying ~"}] )
print(dogs.dict())  # {'birthday': datetime.date(2023, 8, 29), 'sound': [{'sound': 'wang wang ~'}, {'sound': 'ying ying ~'}]}

你好,问下,为什么 我实例化的时候定义了  weight=6.66 ,但是结果却没有 输出来呢 。



写回答 关注

1回答

  • Lisj
    2024-06-02 11:21:59

    可能是版本兼容的问题吧
    正常的情况下是能够输出weight的

高性能 FastAPI 框架入门精讲

FastAPI 框架快速上手开发,结合 API 交互文档逐个讲解核心模块的使用。

12295 学习 · 87 问题

查看课程

相似问题