This website works better with JavaScript
Главная
Обзор
Помощь
Вход
radu
/
python-tutorials
Следить
1
В избранное
0
Ответвить
0
Файлы
Обсуждения
0
Запросы на слияние
0
Вики
Дерево:
bbdeee5bae
Ветки
Метки
master
python-tutor...
/
programs
/
function_default.py
function_default.py
83 B
История
Исходник
1
2
3
4
5
6
def say(message, times=1):
print message * times
say('Hello')
say('World', 5)