Collecting Parameters : Function Dictionary Parameters : Function : Python examples (example source code) Organized by topic

C++
PHP
Python
Python Home »  Function   » [  Function Dictionary Parameters  ]  Screenshots 
 



Collecting Parameters



def print_params(*params):
    print params

print_params('Testing')

print_params(123)

def print_params_2(title, *params):
    print title
    print params

print_params_2('Params:', 123)

print_params_2('Nothing:')


def print_params_3(**params):
    print params

print_params_3(x=1, y=2, z=3)
{'z'3'x'1'y'2}

def print_params_4(x, y, z=3, *pospar, **keypar):
    print x, y, z
    print pospar
    print keypar


print_params_4(123567, foo=1, bar=2)

print_params_4(12)
           
       
Related examples in the same category
1.  Turn parameters into a dictionary Turn parameters into a dictionary
2.  Function parameters: using the double asterisk operator Function parameters: using the double asterisk operator
3.  Parameter passing: mixed with dictionary and tuple Parameter passing: mixed with dictionary and tuple
























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