Home / Python Tips Generated By ChatGPT / The enumerate() Function with Starting Index in Python Use enumerate() and specify a starting index. Source Code for i, letter in enumerate(['a', 'b', 'c'], start=1): print(f"{i}: {letter}")