I have a list and I want to divide it into a list of lists every 3 values.
lista = ['131997','https://www.google.com.ar/','google.com.ar','134930','https://www.a-a.com/','a-a.com']
What I'm looking for is exactly this:
lista = [['131997','https://www.google.com.ar/','google.com.ar'],['134930','https://www.a-a.com/','a-a.com']]