You can use Numpy's char module. It has a function str_len() that returns length element-wise.
E.g.
>>> from numpy import char>>> aa=['hello', 'brothers', 'Bharat', 'Delhi']>>> char.str_len(aa)array([5, 8, 6, 5])
You can also try the following approach to get the length of each string in a list.
>>> aa=['hello', 'brothers', 'Bharat', 'Delhi']>>> [len(a) for a in aa][5, 8, 6, 5]