fork download
  1. lista = [['DE','DO','OU'],['AE','YHH','OO'],['OW','LA','FOR']]
  2.  
  3. lista_lower = [[w.lower() for w in line] for line in lista]
  4. print(lista_lower)
Success #stdin #stdout 0.03s 27704KB
stdin
Standard input is empty
stdout
[['de', 'do', 'ou'], ['ae', 'yhh', 'oo'], ['ow', 'la', 'for']]