This shows you the differences between two versions of the page.
| python:start [2015-11-07] – created dcai | python: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(" | ||
| + | </ | ||