dict pop avec index python
d = {'s':0, 'e':1, 't':6}
del d[next(iter(d))]
print(d)
# This outputs:
{'e': 1, 't': 6}
Shanti
d = {'s':0, 'e':1, 't':6}
del d[next(iter(d))]
print(d)
# This outputs:
{'e': 1, 't': 6}