Hitung dalam Rentang Python

enumerated = list(enumerate(range(3), 1))

print(enumerated)
OUTPUT:
[(1, 0), (2, 1), (3, 2)]
Real Raccoon