Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for tuple (0.35 sec)

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

    변수 `item`은 `items`의 개별 요소라는 사실을 알아두세요.
    
    그리고 에디터는 계속 `str`라는 사실을 알고 도와줍니다.
    
    #### `Tuple`과 `Set`
    
    `tuple`과 `set`도 동일하게 선언할 수 있습니다.
    
    ```Python hl_lines="1  4"
    {!../../../docs_src/python_types/tutorial007.py!}
    ```
    
    이 뜻은 아래와 같습니다:
    
    * 변수 `items_t`는, 차례대로 `int`, `int`, `str`인 `tuple`이다.
    * 변수 `items_s`는, 각 아이템이 `bytes`인 `set`이다.
    
    #### `Dict`
    
    `dict`를 선언하려면 컴마로 구분된 2개의 파라미터가 필요합니다.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  2. docs/de/docs/python-types.md

        * `list`
        * `tuple`
        * `set`
        * `dict`
    
        Verwenden Sie für den Rest, wie unter Python 3.8, das `typing`-Modul:
    
        * `Union`
        * `Optional`
        * ... und andere.
    
    === "Python 3.8+"
    
        * `List`
        * `Tuple`
        * `Set`
        * `Dict`
        * `Union`
        * `Optional`
        * ... und andere.
    
    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/es/docs/python-types.md

    El editor aún sabe que es un `str` y provee soporte para ello.
    
    #### Tuples y Sets
    
    Harías lo mismo para declarar `tuple`s y `set`s:
    
    ```Python hl_lines="1  4"
    {!../../../docs_src/python_types/tutorial007.py!}
    ```
    
    Esto significa:
    
    * La variable `items_t` es un `tuple` con 3 ítems, un `int`, otro `int`, y un `str`.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  4. docs/bn/docs/python-types.md

        * `list`
        * `tuple`
        * `set`
        * `dict`
    
        এবং Python 3.8 এর মতোই, `typing` মডিউল থেকে:
    
        * `Union`
        * `Optional`
        * ...এবং অন্যান্য।
    
    === "Python 3.8+"
    
        * `List`
        * `Tuple`
        * `Set`
        * `Dict`
        * `Union`
        * `Optional`
        * ...এবং অন্যান্য।
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Apr 03 15:34:37 GMT 2024
    - 36K bytes
    - Viewed (0)
Back to top