enumerate() হচ্ছে পাইথনের একটি বিল্ট ইন ফাংশন, এটি এক ধরনের জেনারেটর যা কোন ইটারেবল অবজেক্ট কাউন্ট করে এবং সে কাউন্টারের ভ্যালু রিটার্ন করে যাকে enumerate অবজেক্ট ও বলা হয়। enumerate() ফাংশনে দুটি প্যারামিটার পাস করা যায়। প্রথমটি হল যে কোন Iterable অবজেক্ট (যেমন, নাম্বার, স্ট্রিং, লিস্ট, টুপল ইত্যাদি) এবং দ্বিতীয়টি হল Start ভ্যালু,যেখান থেকে কাউন্টিং শুরু করা হবে।
enumerate(iterable_object,start_value)
>>> items = [ 'apple','orange','mango']>>> enu_Items =enumerate(items)>>>print(type(enu_Items))<class'enumerate'>>>>print (enu_Items)<enumerateobject at 0x7f3a4321e380>>>>print (list(enu_Items))# converting to list[(0,'apple'), (1,'orange'), (2,'mango')]>>> enu_Items =enumerate(items, 10)# changing the default counter by passing START parameter>>>print (list(enu_Items))[(10,'apple'), (11,'orange'), (12,'mango')]>>> Months = ["Jan","Feb","Mar","April","May","June"] # use a for loop over a collection>>>for i, m inenumerate (Months):... print(i,m)... 0 Jan1 Feb2 Mar3 April4 May5 June