How to start the python iteration from second item directly?
d = {
'name': 'ABC',
'age': '23',
'email': 'abc@example.com'
}
I tried by the following code,
first_item = next(iter(d))
for k, v in d.items():
print(k, v)
Expected:
age : 23
email : abc@example.com
Actual:
name : ABC
age : 23
email : abc@example.com
Expecting the solution based on 'Python 3' version.
Thanks,