Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Returning Multiple Values in Python using Dictionary?

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 2.70k
    Comment on it
    1. # A Python program returning multiple values from a method using dictionary
    2. # Function is define that returns a dictionary
    3.  
    4. def fun():
    5. d = dict();
    6. d['str'] = "Demo"
    7. d['x'] = 20
    8. return d
    9. # Driver code to test above method
    10.  
    11. d = fun()
    12. print(d)

    Output:

    1. {'x': 20, 'str': 'Demo'}

    Explanation:

    A Dictionary consist of Key Value pairs with syntax Key:Syntax enclosed within {}. The value within Dictionary is accessed via key. Dictionary are updatable i.e values can be edited or deleted via keys. In above program a dictionay is defined via dict() within which key str and x is created with their values. The dictionary is then returned from function fun() and values are then printed. The values can also be printed via keys i.e

    1. # Driver code to test above method
    2. d = fun()
    3. print(d['str'])
    4. print(d['x'])

     Output::

    1. Demo
    2. 20

     

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: