“Nombre triangulaire python” Réponses codées

Nombre triangulaire python

def triangular_number(n):
    return n * (n + 1) // 2  # Convert to int for Python 2
Travinth Dayalaeaswaran

Nombre triangulaire python

polygonal(n, sides=3)
Travinth Dayalaeaswaran

Nombre triangulaire python

def triangular_number(n):
    i = n
    while True:
        if i == 1:
            return n
        i -= 1
        n += i
Travinth Dayalaeaswaran

Nombre triangulaire python

def triangular_number(n):
    return sum(range(n + 1))
Travinth Dayalaeaswaran

Nombre triangulaire python

def polygonal(n, sides):
    return (n**2*(sides-2) - n*(sides-4)) // 2

def triangular(n):
    return polygonal(n, 3)
Travinth Dayalaeaswaran

Nombre triangulaire python

def triangular_number(n):
    for i in range(n):  # range(3) is a generator for [0, 1, 2]
        n += i
    return n
Travinth Dayalaeaswaran

Réponses similaires à “Nombre triangulaire python”

Questions similaires à “Nombre triangulaire python”

Plus de réponses similaires à “Nombre triangulaire python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code