Akhil Narayanan Nair home

Python - Dictionary Methods

================

eng2sp = {‘one’: ‘uno’, ‘two’: ‘dos’, ‘three’: ‘tres’}

print(eng2sp.keys())

print(eng2sp.values())

print(eng2sp.items())