lugat = {1: 'ot', 2: 'burgut', 3: 'fil'}
var = filter(lambda elem: len(elem[1]) % 2 == 0, lugat.items())
print(', '.join(dict(var).values()))
Poll
- ot
- ot, burgut
- ot, fil
- burgut, fil