In order to indicate that an argument is a list one can use:
def fun(words:list):
code...
How can I indicate that an argument should be a list of lists? All I can think about is doing something like this:
def fun(words:(list,list)):
code...
Would that be understandable?