This website works better with JavaScript
Halaman utama
Jelajahi
Bantuan
Masuk
radu
/
python-tutorials
Liatin
1
Bintangi
0
Fork
0
Berkas
Masalah
0
Tarik Permintaan
0
Wiki
Pohon:
d5ab6c074d
Ranting
Tag
master
python-tutor...
/
programs
/
function_default.py
function_default.py
83 B
Riwayat
Mentahan
1
2
3
4
5
6
def say(message, times=1):
print message * times
say('Hello')
say('World', 5)