7.3.4. Sintaxe de Funções PL/Python

A sintaxe de criação de uma função em Python é muito semelhante a realizada com PL/pgSQL, com a diferença de usar plpython3u após a palavra-chave LANGUAGE:

CREATE FUNCTION funcname (argument-list)
    RETURNS return-type
    AS
    $$
        # PL/Python function body
    $$
    LANGUAGE plpython3u;