Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for nBytes (0.63 sec)

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

    방금 함수의 매개변수로써 타입 힌트를 선언하는 주요 장소를 보았습니다.
    
    이 위치는 여러분이 **FastAPI**와 함께 이를 사용하는 주요 장소입니다.
    
    ### Simple 타입
    
    `str`뿐 아니라 모든 파이썬 표준 타입을 선언할 수 있습니다.
    
    예를 들면:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial005.py!}
    ```
    
    ### 타입 매개변수를 활용한 Generic(제네릭) 타입
    
    `dict`, `list`, `set`, `tuple`과 같은 값을 저장할 수 있는 데이터 구조가 있고, 내부의 값은 각자의 타입을 가질 수도 있습니다.
    
    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

    ### Einfache Typen
    
    Sie können alle Standard-Python-Typen deklarieren, nicht nur `str`.
    
    Zum Beispiel diese:
    
    * `int`
    * `float`
    * `bool`
    * `bytes`
    
    ```Python hl_lines="1"
    {!../../../docs_src/python_types/tutorial005.py!}
    ```
    
    ### Generische Typen mit Typ-Parametern
    
    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/bn/docs/python-types.md

    ### সিম্পল টাইপ
    
    আপনি `str` ছাড়াও সমস্ত স্ট্যান্ডার্ড পাইথন টাইপ ঘোষণা করতে পারেন।
    
    উদাহরণস্বরূপ, আপনি এগুলো  ব্যবহার করতে পারেন:
    
    * `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: Wed Apr 03 15:34:37 GMT 2024
    - 36K bytes
    - Viewed (0)
Back to top