- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for firstFrame (0.12 sec)
-
docs/ru/docs/python-types.md
Вы вводите первый параметр функции, `first_name`, затем точку (`.`), а затем нажимаете `Ctrl+Space`, чтобы запустить дополнение. Но, к сожалению, ничего полезного не выходит: <img src="/img/python-types/image01.png"> ### Добавим типы Давайте изменим одну строчку в предыдущей версии. Мы изменим именно этот фрагмент, параметры функции, с: ```Python first_name, last_name ``` на: ```Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.6K bytes - Viewed (0) -
docs/de/docs/python-types.md
```Python first_name, last_name ``` zu: ```Python first_name: str, last_name: str ``` Das war's. Das sind die „Typhinweise“: ```Python hl_lines="1" {!../../docs_src/python_types/tutorial002.py!} ``` Das ist nicht das gleiche wie das Deklarieren von Defaultwerten, wie es hier der Fall ist: ```Python first_name="john", last_name="doe" ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 19.1K bytes - Viewed (0) -
docs/en/docs/python-types.md
You type the first parameter of the function, `first_name`, then a dot (`.`) and then hit `Ctrl+Space` to trigger the completion. But, sadly, you get nothing useful: <img src="/img/python-types/image01.png"> ### Add types Let's modify a single line from the previous version. We will change exactly this fragment, the parameters of the function, from: ```Python first_name, last_name ``` to: ```Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:47:53 UTC 2024 - 16.7K bytes - Viewed (0) -
docs/pt/docs/python-types.md
```Python first_name, last_name ``` para: ```Python first_name: str, last_name: str ``` É isso aí. Esses são os "type hints": ```Python hl_lines="1" {!../../docs_src/python_types/tutorial002.py!} ``` Isso não é o mesmo que declarar valores padrão como seria com: ```Python first_name="john", last_name="doe" ``` É uma coisa diferente.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 15 12:32:27 UTC 2024 - 18K bytes - Viewed (0) -
docs/bn/docs/python-types.md
```Python first_name, last_name ``` থেকে এইগুলি: ```Python first_name: str, last_name: str ``` ব্যাস। এগুলিই "টাইপ হিন্ট": ```Python hl_lines="1" {!../../docs_src/python_types/tutorial002.py!} ``` এটি ডিফল্ট ভ্যালু ঘোষণা করার মত নয় যেমন: ```Python first_name="john", last_name="doe" ``` এটি একটি ভিন্ন জিনিস।
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 35.8K bytes - Viewed (0) -
docs/vi/docs/python-types.md
Bạn gõ tham số đầu tiên của hàm, `first_name`, sau đó một dấu chấm (`.`) và sau đó ấn `Ctrl+Space` để kích hoạt bộ hoàn thành. Nhưng đáng buồn, bạn không nhận được điều gì hữu ích cả: <img src="/img/python-types/image01.png"> ### Thêm kiểu dữ liệu Hãy sửa một dòng từ phiên bản trước. Chúng ta sẽ thay đổi chính xác đoạn này, tham số của hàm, từ: ```Python first_name, last_name ``` sang:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 21.6K bytes - Viewed (0) -
docs/nl/docs/python-types.md
```Python first_name, last_name ``` naar: ```Python first_name: str, last_name: str ``` Dat is alles. Dat zijn de "type hints": ```Python hl_lines="1" {!../../docs_src/python_types/tutorial002.py!} ``` Dit is niet hetzelfde als het declareren van standaardwaarden zoals bij: ```Python first_name="john", last_name="doe" ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.3K bytes - Viewed (0) -
docs/fr/docs/python-types.md
```Python first_name, last_name ``` à : ```Python first_name: str, last_name: str ``` C'est tout. Ce sont des annotations de types : {*../../docs_src/python_types/tutorial002.py hl[1] *} À ne pas confondre avec la déclaration de valeurs par défaut comme ici : ```Python first_name="john", last_name="doe" ``` C'est une chose différente.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 15:21:34 UTC 2024 - 10K bytes - Viewed (0) -
docs/uk/docs/python-types.md
Ви надрукуєте перший параметр функції, `first_name`, тоді крапку (`.`), а тоді натиснете `Ctrl+Space`, щоб запустити автозаповнення. Але, на жаль, ви не отримаєте нічого корисного: <img src="/img/python-types/image01.png"> ### Додайте типи Давайте змінимо один рядок з попередньої версії. Ми змінимо саме цей фрагмент, параметри функції, з: ```Python first_name, last_name ``` на: ```Python
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/ko/docs/python-types.md
그때 개발자들의 오랜 친구, 에디터 자동완성을 시도해봅니다. 당신은 `first_name`를 입력한 뒤 점(`.`)을 입력하고 자동완성을 켜기 위해서 `Ctrl+Space`를 눌렀습니다. 하지만 슬프게도 아무런 도움이 되지 않습니다: <img src="/img/python-types/image01.png"> ### 타입 추가하기 이전 버전에서 한 줄만 수정해봅시다. 저희는 이 함수의 매개변수 부분: ```Python first_name, last_name ``` 을 아래와 같이 바꿀 겁니다: ```Python first_name: str, last_name: str ``` 이게 다입니다. 이게 "타입 힌트"입니다:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0)