I have the list as below :
item = ['3138591780' ,'3145056746' ,'3228083330' ,'3230089832' ,'3238650148' ,'3241690762' ,
'3257712043' ,'3754126989' ,'3799112085' ,'3801697389' ,'3801701129' ,'3801708081']
I want to pick the 3 items from this iterative manner so in first iteration it will return sublist as ['3138591780' ,'3145056746' ,'3228083330'] . 2nd iteration it will return ['3230089832' ,'3238650148' ,'3241690762'] How can I achieve this ?
thanks