Как сделать функцию в Python?

Аватар пользователя Ilia Kaziamov
Ilia Kaziamov
05 ноября 2022

Нужно использовать ключевое слово def после которого указать:

  1. название
  2. параметры в функции в скобках
  3. двоеточие, после которого будет указано тело функции
  4. если функция возвращает значение, то указать оператор 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
Познакомьтесь с основами Python бесплатно