- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 679 for Pythona (0.05 sec)
-
docs/id/docs/tutorial/path-params.md
```JSON {"item_id":3} ``` /// check | Periksa Perhatikan nilai fungsi yang diterima (dan dihasilkan) adalah `3`, sebagai `int` di Python, dan bukan string `"3"`. Sehingga dengan deklarasi tipe data **FastAPI** memberikan request otomatis <abbr title="konversi string dari request HTTP menjadi data Python">"parsing"</abbr>. /// ## Validasi Data
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 8.8K bytes - Viewed (0) -
docs/pt/docs/tutorial/debugging.md
<div class="termy"> ```console $ python myapp.py ``` </div> mas não é chamado quando outro arquivo o importa, como em: ```Python from myapp import app ``` #### Mais detalhes Digamos que seu arquivo se chama `myapp.py`. Se você executá-lo com: <div class="termy"> ```console $ python myapp.py ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-models.md
So, if we create a Pydantic object `user_in` like: ```Python user_in = UserIn(username="john", password="secret", email="******@****.***") ``` and then we call: ```Python user_dict = user_in.dict() ``` we now have a `dict` with the data in the variable `user_dict` (it's a `dict` instead of a Pydantic model object). And if we call: ```Python print(user_dict) ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.2K bytes - Viewed (0) -
docs/vi/docs/index.md
Bạn định nghĩa bằng cách sử dụng các kiểu dữ liệu chuẩn của Python. Bạn không phải học một cú pháp mới, các phương thức và class của một thư viện cụ thể nào. Chỉ cần sử dụng các chuẩn của **Python**. Ví dụ, với một tham số kiểu `int`: ```Python item_id: int ``` hoặc với một model `Item` phức tạp hơn: ```Python item: Item ``` ...và với định nghĩa đơn giản đó, bạn có được:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.9K bytes - Viewed (0) -
docs/fr/docs/tutorial/debugging.md
<div class="termy"> ```console $ python myapp.py ``` </div> mais qui n'est pas appelé lorsqu'un autre fichier l'importe, comme dans : ```Python from myapp import app ``` #### Pour davantage de détails Imaginons que votre fichier s'appelle `myapp.py`. Si vous l'exécutez avec : <div class="termy"> ```console $ python myapp.py ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Oct 27 17:31:14 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/fr/docs/features.md
### Faite en python moderne Tout est basé sur la déclaration de type standard de **Python 3.8** (grâce à Pydantic). Pas de nouvelles syntaxes à apprendre. Juste du Python standard et moderne. Si vous souhaitez un rappel de 2 minutes sur l'utilisation des types en Python (même si vous ne comptez pas utiliser FastAPI), jetez un oeil au tutoriel suivant: [Python Types](python-types.md){.internal-link target=_blank}.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/de/docs/tutorial/bigger-applications.md
│ └── routers # „routers“ ist ein „Python-Subpackage“ │ │ ├── __init__.py # macht „routers“ zu einem „Python-Subpackage“ │ │ ├── items.py # „items“-Submodul, z. B. import app.routers.items │ │ └── users.py # „users“-Submodul, z. B. import app.routers.users │ └── internal # „internal“ ist ein „Python-Subpackage“ │ ├── __init__.py # macht „internal“ zu einem „Python-Subpackage“
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 21K bytes - Viewed (0) -
docs/zh-hant/docs/virtual-environments.md
``` 然後再在其他目錄中查找。 因此,當你在終端機中輸入 `python` 時,系統會在以下目錄中找到 Python 程式: ```plaintext C:\Users\user\code\awesome-project\.venv\Scripts\python ``` 並使用這個。 //// 一個重要的細節是,虛擬環境路徑會被放在 `PATH` 變數的**開頭**。系統會在找到任何其他可用的 Python **之前**找到它。這樣,當你運行 `python` 時,它會使用**虛擬環境中的** Python,而不是任何其他 `python`(例如,全域環境中的 `python`)。 啟用虛擬環境還會改變其他一些內容,但這是它所做的最重要的事情之一。 ## 檢查虛擬環境
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 22:39:33 UTC 2024 - 20.7K bytes - Viewed (0) -
docs/en/docs/tutorial/debugging.md
<div class="termy"> ```console $ python myapp.py ``` </div> but is not called when another file imports it, like in: ```Python from myapp import app ``` #### More details { #more-details } Let's say your file is named `myapp.py`. If you run it with: <div class="termy"> ```console $ python myapp.py ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md
//// tab | python 3.9+ ```python hl_lines="18-19 26-27" {!> ../../docs_src/dependencies/tutorial008_an_py39.py!} ``` //// //// tab | python 3.8+ ```python hl_lines="17-18 25-26" {!> ../../docs_src/dependencies/tutorial008_an.py!} ``` //// //// tab | python 3.8+ non-annotated /// tip | Dica Utilize a versão com `Annotated` se possível. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 14.8K bytes - Viewed (0)