Tweeted By @python_tip
enumerate() takes a second parameter to change the starting count:
— Daily Python Tip (@python_tip) September 3, 2018
>>> names = ["Alice", "Bob", "Charlie"]
>>> list(enumerate(names, start=101))
[(101, 'Alice'), (102, 'Bob'), (103, 'Charlie')]https://t.co/SECAO6sci5#python