Python Dictionary Values || Lambda Function || Python
In this we are going to see a basic program on dictionary values using lambda in Python Programming Language.


x = lambda a: a.values()

d = {
    1:'a',
    2:'b',
    3:'c'
}
print(x(d))

# Coded by Saahil

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post