Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for inro (0.2 sec)

  1. docs/en/docs/python-types.md

    # Python Types Intro
    
    Python has support for optional "type hints" (also called "type annotations").
    
    These **"type hints"** or annotations are a special syntax that allow declaring the <abbr title="for example: str, int, float, bool">type</abbr> of a variable.
    
    By declaring types for your variables, editors and tools can give you better support.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 17K bytes
    - Viewed (0)
  2. docs/em/docs/python-types.md

        📣 🔢, ⏮️ 🎏 ❤ (`:`) ❕.
    
        🆎, 🚮 `list`.
    
        📇 🆎 👈 🔌 🔗 🆎, 👆 🚮 👫 ⬜ 🗜:
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/python_types/tutorial006_py39.py!}
        ```
    
    !!! info
        👈 🔗 🆎 ⬜ 🗜 🤙 "🆎 🔢".
    
        👉 💼, `str` 🆎 🔢 🚶‍♀️ `List` (⚖️ `list` 🐍 3️⃣.9️⃣ &amp; 🔛).
    
    👈 ⛓: "🔢 `items` `list`, &amp; 🔠 🏬 👉 📇 `str`".
    
    !!! tip
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  3. docs/ja/docs/python-types.md

    また、その結果のオブジェクトですべてのエディタのサポートを受けることができます。
    
    Pydanticの公式ドキュメントから引用:
    
    ```Python
    {!../../../docs_src/python_types/tutorial011.py!}
    ```
    
    !!! info "情報"
        Pydanticについてより学びたい方は<a href="https://docs.pydantic.dev/" class="external-link" target="_blank">ドキュメントを参照してください</a>.
    
    **FastAPI** はすべてPydanticをベースにしています。
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  4. docs/uk/docs/python-types.md

        Оскільки список є типом, який містить деякі внутрішні типи, ви поміщаєте їх у квадратні дужки:
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/python_types/tutorial006_py39.py!}
        ```
    
    !!! info
        Ці внутрішні типи в квадратних дужках називаються "параметрами типу".
    
        У цьому випадку, `str` це параметр типу переданий у `List` (або `list` у Python 3.9 і вище).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 19.7K bytes
    - Viewed (0)
  5. docs/ru/docs/python-types.md

    И вы получаете полную поддержку редактора для этого итогового объекта.
    
    Взято из официальной документации Pydantic:
    
    ```Python
    {!../../../docs_src/python_types/tutorial011.py!}
    ```
    
    !!! info
        Чтобы узнать больше о <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic, читайте его документацию</a>.
    
    **FastAPI** целиком основан на Pydantic.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  6. docs/zh/docs/python-types.md

    每个属性都拥有类型。
    
    接着你用一些值来创建这个类的实例,这些值会被校验,并被转换为适当的类型(在需要的情况下),返回一个包含所有数据的对象。
    
    然后,你将获得这个对象的所有编辑器支持。
    
    下面的例子来自 Pydantic 官方文档:
    
    ```Python
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    !!! info
        想进一步了解 <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic,请阅读其文档</a>.
    
    整个 **FastAPI** 建立在 Pydantic 的基础之上。
    
    实际上你将在 [教程 - 用户指南](tutorial/index.md){.internal-link target=_blank} 看到很多这种情况。
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  7. docs/vi/docs/python-types.md

        Như danh sách là một kiểu dữ liệu chứa các kiểu dữ liệu có sẵn, bạn đặt chúng bên trong dấu ngoặc vuông:
    
        ```Python hl_lines="4"
        {!> ../../../docs_src/python_types/tutorial006.py!}
        ```
    
    !!! info
        Các kiểu dữ liệu có sẵn bên trong dấu ngoặc vuông được gọi là "tham số kiểu dữ liệu".
    
        Trong trường hợp này, `str` là tham số kiểu dữ liệu được truyền tới `List` (hoặc `list` trong Python 3.9 trở lên).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  8. docs/tr/docs/python-types.md

    Ve ortaya çıkan nesne üzerindeki bütün editör desteğini alırsınız.
    
    Resmi Pydantic dokümanlarından alınmıştır:
    
    ```Python
    {!../../../docs_src/python_types/tutorial011.py!}
    ```
    
    !!! info
        Daha fazla şey öğrenmek için <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic'i takip edin</a>.
    
    **FastAPI** tamamen Pydantic'e dayanmaktadır.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  9. docs/pt/docs/python-types.md

    E você recebe todo o suporte do editor com esse objeto resultante.
    
    Retirado dos documentos oficiais dos Pydantic:
    
    ```Python
    {!../../../docs_src/python_types/tutorial011.py!}
    ```
    
    !!! info "Informação"
        Para saber mais sobre o <a href="https://docs.pydantic.dev/" class="external-link" target="_blank"> Pydantic, verifique seus documentos </a>.
    
    **FastAPI** é todo baseado em Pydantic.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  10. docs/es/docs/python-types.md

    Y obtienes todo el soporte del editor con el objeto resultante.
    
    Tomado de la documentación oficial de Pydantic:
    
    ```Python
    {!../../../docs_src/python_types/tutorial010.py!}
    ```
    
    !!! info "Información"
        Para aprender más sobre <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic mira su documentación</a>.
    
    **FastAPI** está todo basado en Pydantic.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
Back to top