“pyramide algébrique Python” Réponses codées

pyramide algébrique Python

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

pyramide algébrique Python


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

Réponses similaires à “pyramide algébrique Python”

Questions similaires à “pyramide algébrique Python”

Plus de réponses similaires à “pyramide algébrique Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code