“pirámide algebraica pitón” Código de respuesta

pirámide algebraica pitón

def print_pyramid(pyramid):
    lines = []
    for layer in pyramid:
        line = ""
        for brick in layer:
            line += str(brick)
            line += " "
        lines.append(line)
    pyramid_len = max([len(layer) for layer in lines])
    txt = ""
    for line in lines:
        diff = (pyramid_len - len(line)) / 2
        txt += " " * int(diff + 0.5)
        txt += line
        txt += " " * int(diff - 0.5)
        txt += "\n"
    print(txt)
Eager Eel

pirámide algebraica pitón


def calcul_pyramid(base):
    pyramid = [base]
    for i in range(len(base) - 1):
        actual_layer = []
        last_layer = pyramid[i]
        for j in range(len(last_layer) - 1):
            actual_layer.append(last_layer[j] + last_layer[j + 1])
        pyramid.append(actual_layer)
    return pyramid

Smiling Swan

Respuestas similares a “pirámide algebraica pitón”

Preguntas similares a “pirámide algebraica pitón”

Más respuestas relacionadas con “pirámide algebraica pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código