Dict Pop с индексным питоном

d = {'s':0, 'e':1, 't':6}
del d[next(iter(d))]
print(d)

# This outputs:
{'e': 1, 't': 6}
Shanti