Return more than one parameters : Function Return « Function « Python






Return more than one parameters

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 variableSave function result into a variable
4.Return three value Return three value