Return more than one parameters : Function Return : Function : Python examples (example source code) Organized by topic

C++
PHP
Python
Python Home »  Function   » [  Function Return  ]  Screenshots 
 



Return more than one parameters




def next_block():
    p1 = 2
    p2 = 2.3
    p3 = "c"
    p4 = "String"
    p5 = "3.4444"

    return p1, p2, p3, p4, p5


p1, p2, p3, p4, p5 = next_block()

print p1
print p2
print p3
print p4
print p5


           
       
Related examples in the same category
1.  Define function: return int value Define function: return int value
2.  A Simple function definition: return a tuple. A Simple function definition: return a tuple.
3.  Save function result into a variable Save function result into a variable
4.  Return three value Return three value
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.