Python untuk loop mendapatkan nomor iterasi

for idx, item in enumerate(list):
    print(item)
    print('Iteration number: ', idx)
LazyCompiler