- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for first_name (0.05 sec)
-
docs_src/python_types/tutorial001_py39.py
def get_full_name(first_name, last_name): full_name = first_name.title() + " " + last_name.title() return full_name
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 162 bytes - Viewed (0) -
docs_src/python_types/tutorial002_py39.py
def get_full_name(first_name: str, last_name: str): full_name = first_name.title() + " " + last_name.title() return full_name
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 172 bytes - Viewed (0) -
docs/ru/docs/python-types.md
Вы вводите первый параметр функции, `first_name`, затем точку (`.`) и нажимаете `Ctrl+Space`, чтобы вызвать автозавершение. Но, к сожалению, ничего полезного не находится: <img src="/img/python-types/image01.png"> ### Добавим типы { #add-types } Давайте изменим одну строку из предыдущей версии. Мы поменяем ровно этот фрагмент — параметры функции — с: ```Python first_name, last_name ``` на:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 24.4K 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“: {* ../../docs_src/python_types/tutorial002_py39.py hl[1] *} 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 Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 17.9K bytes - Viewed (1) -
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": {* ../../docs_src/python_types/tutorial002_py39.py hl[1] *} 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 Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 16.7K bytes - Viewed (0) -
docs/es/docs/python-types.md
```Python first_name, last_name ``` a: ```Python first_name: str, last_name: str ``` Eso es todo. Esas son las "anotaciones de tipos": {* ../../docs_src/python_types/tutorial002_py39.py hl[1] *} Eso no es lo mismo que declarar valores predeterminados como sería con: ```Python first_name="john", last_name="doe" ``` Es una cosa diferente.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 16.4K bytes - Viewed (1) -
docs/en/docs/python-types.md
```Python first_name, last_name ``` to: ```Python first_name: str, last_name: str ``` That's it. Those are the "type hints": {* ../../docs_src/python_types/tutorial002_py39.py hl[1] *} That is not the same as declaring default values like would be with: ```Python first_name="john", last_name="doe" ``` It's a different thing.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 15.6K bytes - Viewed (0) -
docs/tr/docs/python-types.md
```Python first_name, last_name ``` ve bu hale getireceğiz: ```Python first_name: str, last_name: str ``` Bu kadar. İşte bunlar "tip belirteçleri": {* ../../docs_src/python_types/tutorial002.py hl[1] *} Bu, aşağıdaki gibi varsayılan değerleri bildirmekle aynı şey değildir: ```Python first_name="john", last_name="doe" ```Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.5K 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 Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 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 Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 19.4K bytes - Viewed (0)