brand new to python so please be gentle! i have a function that returns a list of lists, but now i need to access and print the biggest list. i have started off with this:
for list in listoflists:
>>>size = len(list)
and then i want to do something like compare all the sizes and just print the biggest one, but i can't get my head around the syntax. or should i be going about this a completely different...