Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for standard (0.27 sec)

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

    For now, you just need to know that `Annotated` exists, and that it's standard Python. 😎
    
    Later you will see how **powerful** it can be.
    
    !!! tip
        The fact that this is **standard Python** means that you will still get the **best possible developer experience** in your editor, with the tools you use to analyze and refactor your code, etc. ✨
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 17K bytes
    - Viewed (0)
  2. docs/de/docs/python-types.md

    Im Moment müssen Sie nur wissen, dass `Annotated` existiert, und dass es Standard-Python ist. 😎
    
    Später werden Sie sehen, wie **mächtig** es sein kann.
    
    !!! tip "Tipp"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:29:25 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. docs/fr/docs/python-types.md

    Pour déclarer ces types et les types internes, on utilise le module standard de Python `typing`.
    
    Il existe spécialement pour supporter ces annotations de types.
    
    #### `List`
    
    Par exemple, définissons une variable comme `list` de `str`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.3K bytes
    - Viewed (0)
  4. docs/tr/docs/python-types.md

    Az önce tip belirteçlerinin en çok kullanıldığı yeri gördünüz.
    
     **FastAPI**ile çalışırken tip belirteçlerini en çok kullanacağımız yer yine fonksiyonlardır.
    
    ### Basit tipler
    
    Yalnızca `str` değil, tüm standart Python tiplerinin bildirebilirsiniz.
    
    Örneğin şunları kullanabilirsiniz:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial005.py!}
    ```
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.7K bytes
    - Viewed (0)
Back to top