Как сделать функцию в Python?
Ответы
Ilia Kaziamov
05 ноября 2022
Нужно использовать ключевое слово def
после которого указать:
- название
- параметры в функции в скобках
- двоеточие, после которого будет указано тело функции
- если функция возвращает значение, то указать оператор return
Из документации:
The keyword
def
introduces a function definition. It must be followed by the function name and the parenthesized list of formal parameters. The statements that form the body of the function start at the next line, and must be indented.The
return
statement returns with a value from a function. return without an expression argument returns None. Falling off the end of a function also returns None.
Пример функции
def function_name(agruments):
return arguments
0
0