- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 873 for Python (0.04 sec)
-
docs/uk/docs/python-types.md
Щоб оголосити ці типи та внутрішні типи, ви можете використовувати стандартний модуль Python `typing`. Він існує спеціально для підтримки анотацій типів. #### Новіші версії Python Синтаксис із використанням `typing` **сумісний** з усіма версіями, від Python 3.6 до останніх, включаючи Python 3.9, Python 3.10 тощо.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 19.5K bytes - Viewed (0) -
docs/tr/docs/python-types.md
Ancak, ne yazık ki, yararlı hiçbir şey elde edemediniz: <img src="/img/python-types/image01.png"> ### Tipleri ekle Önceki sürümden sadece bir satırı değiştirelim. Tam olarak bu parçayı, işlevin parametrelerini değiştireceğiz: ```Python first_name, last_name ``` ve bu hale getireceğiz: ```Python first_name: str, last_name: str ``` Bu kadar.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.7K bytes - Viewed (0) -
docs/em/docs/python-types.md
✋️, 😞, 👆 🤚 🕳 ⚠: <img src="/img/python-types/image01.png"> ### 🚮 🆎 ➡️ 🔀 👁 ⏸ ⚪️➡️ ⏮️ ⏬. 👥 🔜 🔀 ⚫️❔ 👉 🧬, 🔢 🔢, ⚪️➡️: ```Python first_name, last_name ``` : ```Python first_name: str, last_name: str ``` 👈 ⚫️. 👈 "🆎 🔑": ```Python hl_lines="1" {!../../docs_src/python_types/tutorial002.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.4K bytes - Viewed (0) -
docs/zh/docs/python-types.md
# Python 类型提示简介 **Python 3.6+ 版本**加入了对"类型提示"的支持。 这些**"类型提示"**是一种新的语法(在 Python 3.6 版本加入)用来声明一个变量的<abbr title="例如:str、int、float、bool">类型</abbr>。 通过声明变量的类型,编辑器和一些工具能给你提供更好的支持。 这只是一个关于 Python 类型提示的**快速入门 / 复习**。它仅涵盖与 **FastAPI** 一起使用所需的最少部分...实际上只有很少一点。 整个 **FastAPI** 都基于这些类型提示构建,它们带来了许多优点和好处。 但即使你不会用到 **FastAPI**,了解一下类型提示也会让你从中受益。 /// note 如果你已经精通 Python,并且了解关于类型提示的一切知识,直接跳到下一章节吧。 /// ## 动机 让我们从一个简单的例子开始:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.6K bytes - Viewed (0) -
docs/ja/docs/python-types.md
# Pythonの型の紹介 **Python 3.6以降** では「型ヒント」オプションがサポートされています。 これらの **"型ヒント"** は変数の<abbr title="例: str, int, float, bool">型</abbr>を宣言することができる新しい構文です。(Python 3.6以降) 変数に型を宣言することでエディターやツールがより良いサポートを提供することができます。 ここではPythonの型ヒントについての **クイックチュートリアル/リフレッシュ** で、**FastAPI**でそれらを使用するために必要な最低限のことだけをカバーしています。...実際には本当に少ないです。 **FastAPI** はすべてこれらの型ヒントに基づいており、多くの強みと利点を与えてくれます。 しかしたとえまったく **FastAPI** を使用しない場合でも、それらについて少し学ぶことで利点を得ることができるでしょう。 /// note | "備考"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.8K bytes - Viewed (0) -
docs/ko/docs/python-types.md
하지만 슬프게도 아무런 도움이 되지 않습니다: <img src="/img/python-types/image01.png"> ### 타입 추가하기 이전 버전에서 한 줄만 수정해봅시다. 저희는 이 함수의 매개변수 부분: ```Python first_name, last_name ``` 을 아래와 같이 바꿀 겁니다: ```Python first_name: str, last_name: str ``` 이게 다입니다. 이게 "타입 힌트"입니다: ```Python hl_lines="1" {!../../docs_src/python_types/tutorial002.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/fr/docs/python-types.md
Mais malheureusement, rien d'utile n'en résulte : <img src="/img/python-types/image01.png"> ### Ajouter des types Modifions une seule ligne de la version précédente. Nous allons changer seulement cet extrait, les paramètres de la fonction, de : ```Python first_name, last_name ``` à : ```Python first_name: str, last_name: str ``` C'est tout.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:21:34 UTC 2024 - 10K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/classes-as-dependencies.md
//// tab | Python 3.10+ ```Python hl_lines="9" {!> ../../docs_src/dependencies/tutorial001_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="11" {!> ../../docs_src/dependencies/tutorial001_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="12" {!> ../../docs_src/dependencies/tutorial001_an.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12K bytes - Viewed (0) -
docs/en/docs/tutorial/header-params.md
## Import `Header` First import `Header`: //// tab | Python 3.10+ ```Python hl_lines="3" {!> ../../docs_src/header_params/tutorial001_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="3" {!> ../../docs_src/header_params/tutorial001_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="3" {!> ../../docs_src/header_params/tutorial001_an.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/de/docs/tutorial/extra-models.md
Genauso können Sie eine Response deklarieren, die eine Liste von Objekten ist. Verwenden Sie dafür Pythons Standard `typing.List` (oder nur `list` in Python 3.9 und darüber): //// tab | Python 3.9+ ```Python hl_lines="18" {!> ../../docs_src/extra_models/tutorial004_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="1 20" {!> ../../docs_src/extra_models/tutorial004.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.7K bytes - Viewed (0)