Entradas

Mostrando entradas de agosto, 2013

PYTHON, SERIE ARMÓNICA Y SERIE P

Imagen
########### PROGRAMA SOBRE COMPARATIVA DE SERIE ARMÓNICA Y SERIE P ########### EJEMPLO DE SERIE P CON P=2 # Mi canal en Youtube: https://www.youtube.com/channel/UCe4UCHmQu92O03Z1fgzUXmQ ####   INICIO FUNCION ARMONICA #### def armoni(n):    if n>=1:        suma = 0.0        i=1.0        while i<=n:            suma = suma + 1/i            print "Suma: ", suma            i=i + 1        return suma        else :         print "Valor no permitido"         return -1 #### INICIO SERIE P ### def seriep(p,n):     if n>=1:      ...