Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sunt (0.13 sec)

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

    
    ## Type Hints với Metadata Annotations
    
    Python cũng có một tính năng cho phép đặt **metadata bổ sung** trong những gợi ý kiểu dữ liệu này bằng cách sử dụng `Annotated`.
    
    === "Python 3.9+"
    
        Trong Python 3.9, `Annotated` là một phần của thư viện chuẩn, do đó bạn có thể import nó từ `typing`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  2. docs/fr/docs/python-types.md

    ```Python hl_lines="1  4"
    {!../../../docs_src/python_types/tutorial008.py!}
    ```
    
    Dans cet exemple :
    
    * La variable `prices` est de type `dict` :
        * Les clés de ce dictionnaire sont de type `str`.
        * Les valeurs de ce dictionnaire sont de type `float`.
    
    #### `Optional`
    
    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)
Back to top