This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zaloguj się
tianyunperfect
/
python-base--
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Oczekujące zmiany
0
Wiki
Drzewo:
84f31f1d41
Gałęzie
Tagi
master
sql_redis
python-base--
/
tmp
/
tmp.py
tmp.py
111 B
Historia
Czysty
1
2
3
4
5
6
7
8
def test(a, b=None, c=None, d=None):
print(a)
print(b)
print(c)
print(d)
test(*[1, 2, 3, 4])