Ministério da Educação
Brasil um país de todos
Personal tools
Navigation
Log in


Forgot your password?
 
Document Actions

slides14-ex3.py

by Cicero Garrozi last modified 2014-07-22 07:59

Click here to get the file

Size 1 kB - File type text/python-source

File contents

def SomaLista(lista):
    if len(lista) < 1:
        return None
    elif len(lista) == 1:
        return lista[0]
    else:
        lista[0] = lista[0]+lista[1]
        del(lista[1])
        #print lista #descomente esta linha para exibir as listas parciais
        return SomaLista(lista)

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: