- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 681 for Python (0.04 sec)
-
docs/vi/docs/environment-variables.md
</div> //// ## Đọc các Biến Môi Trường trong Python Bạn cũng có thể tạo các biến môi trường **bên ngoài** đoạn mã Python, trong terminal (hoặc bằng bất kỳ phương pháp nào khác), và sau đó **đọc chúng trong Python**. Ví dụ, bạn có một file `main.py` với: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 07 22:17:13 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/ja/docs/tutorial/debugging.md
より詳しい情報は、<a href="https://docs.python.org/3/library/__main__.html" class="external-link" target="_blank">公式Pythonドキュメント</a>を参照してください。 /// ## デバッガーでコードを実行 コードから直接Uvicornサーバーを実行しているため、デバッガーから直接Pythonプログラム (FastAPIアプリケーション) を呼び出せます。 --- 例えば、Visual Studio Codeでは、次のことが可能です: * 「デバッグ」パネルに移動。 * 「構成の追加...」 * 「Python」を選択。 * オプション「`Python: Current File (Integrated Terminal)`」を指定してデバッガーを実行。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3K bytes - Viewed (0) -
.github/workflows/build-docs.yml
- changes runs-on: ubuntu-latest outputs: langs: ${{ steps.show-langs.outputs.langs }} steps: - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.11" - name: Setup uv uses: astral-sh/setup-uv@v6 with: version: "0.4.15" enable-cache: true cache-dependency-glob: |
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 4.1K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-data-types.md
* `datetime.datetime`: * A Python `datetime.datetime`. * In requests and responses will be represented as a `str` in ISO 8601 format, like: `2008-09-15T15:53:00+05:00`. * `datetime.date`: * Python `datetime.date`. * In requests and responses will be represented as a `str` in ISO 8601 format, like: `2008-09-15`. * `datetime.time`: * A Python `datetime.time`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/es/docs/tutorial/extra-data-types.md
* `datetime.datetime`: * Un `datetime.datetime` de Python. * En requests y responses se representará como un `str` en formato ISO 8601, como: `2008-09-15T15:53:00+05:00`. * `datetime.date`: * `datetime.date` de Python. * En requests y responses se representará como un `str` en formato ISO 8601, como: `2008-09-15`. * `datetime.time`: * Un `datetime.time` de Python.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.8K bytes - Viewed (0) -
docs/em/docs/tutorial/extra-models.md
, 🚥 👥 ✍ Pydantic 🎚 `user_in` 💖: ```Python user_in = UserIn(username="john", password="secret", email="******@****.***") ``` & ⤴️ 👥 🤙: ```Python user_dict = user_in.dict() ``` 👥 🔜 ✔️ `dict` ⏮️ 💽 🔢 `user_dict` (⚫️ `dict` ↩️ Pydantic 🏷 🎚). & 🚥 👥 🤙: ```Python print(user_dict) ``` 👥 🔜 🤚 🐍 `dict` ⏮️: ```Python { 'username': 'john',
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/ja/docs/index.md
### まとめ 要約すると、関数のパラメータとして、パラメータやボディ などの型を**一度だけ**宣言します。 標準的な最新の Python の型を使っています。 新しい構文や特定のライブラリのメソッドやクラスなどを覚える必要はありません。 単なる標準的な**3.8 以降の Python**です。 例えば、`int`の場合: ```Python item_id: int ``` または、より複雑な`Item`モデルの場合: ```Python item: Item ``` ...そして、この一度の宣言で、以下のようになります: - 以下を含むエディタサポート: - 補完 - タイプチェック
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.3K bytes - Viewed (0) -
docs/pl/docs/index.md
Nie musisz sie uczyć żadnej nowej składni, metod lub klas ze specyficznych bibliotek itp. Po prostu standardowy **Python**. Na przykład, dla danych typu `int`: ```Python item_id: int ``` albo dla bardziej złożonego obiektu `Item`: ```Python item: Item ``` ...i z pojedyńczą deklaracją otrzymujesz: * Wsparcie edytorów kodu, wliczając: * Auto-uzupełnianie.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 19.6K bytes - Viewed (0) -
docs/es/docs/tutorial/body-nested-models.md
* Si estás en una versión de Python inferior a 3.9, importa su versión equivalente del módulo `typing` * Pasa el/los tipo(s) interno(s) como "parámetros de tipo" usando corchetes: `[` y `]` En Python 3.9 sería: ```Python my_list: list[str] ``` En versiones de Python anteriores a 3.9, sería: ```Python from typing import List my_list: List[str] ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/em/docs/tutorial/debugging.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.1K bytes - Viewed (0)