superexacttestpy.tl.len_data

superexacttestpy.tl.len_data(data)

Get the length of all the sub list of data

Parameters:
data : list

The list of sets to analyze

Returns:

data – List of length for all sublists in data

Return type:

list

Example

>>> data = [["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q"],
    ["L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],
    ["H","I","J","K","L","M","N","O","P","Q"]]
>>> len_data(data)
... [17, 15, 10]