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

Python
1. 2D
2. Application
3. Buildin Function
4. Class
5. Data Structure
6. Data Type
7. Development
8. Dictionary
9. Event
10. Exception
11. File
12. Function
13. GUI Pmw
14. GUI Tk
15. Language Basics
16. List
17. Math
18. Network
19. String
20. System
21. Thread
22. Tuple
23. Utility
24. XML
Java
Java Tutorial
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Python » Function » Function Dictionary ParametersScreenshots 
Collecting Parameters
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 dictionaryTurn parameters into a dictionary
2. Function parameters: using the double asterisk operatorFunction parameters: using the double asterisk operator
3. Parameter passing: mixed with dictionary and tupleParameter passing: mixed with dictionary and tuple
Home | Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.