Guest User

Untitled

a guest
May 27th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. def func6a(lista):
  2. maior = 0
  3. for el in lista:
  4. if type(el) == list:
  5. maior = func6a(el)
  6. else:
  7. if len(el) > maior:
  8. maior = el
  9.  
  10. return maior
Add Comment
Please, Sign In to add comment