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