Site Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

python:start [2015-11-07] – created dcaipython:start [2020-04-19] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== Python ======
  
 +
 +<code python>
 +def func(arg1, *list, **dict):
 +    print(arg1)
 +    print(list)
 +    print(dict)
 +    
 +func("first argument", "argument 2", "argument 3", key1="Key 1", key2="Key 2", key3="Key 3")
 +</code>