Posts

Showing posts with the label fonksiyon

python-beginner - 6 - Fonksiyonlar

Beginner: Strings Lists Operator-Datetime If-else Donguler Fonksiyonlar Python Beginner Intermediate Advanced Pro python-hosting Other course React Links General JS PHP Programming Python C++ Stuff Fonksiyonlar Basit klasik def helloworld ():     print ( 'Hello' ) helloworld () # Hello parametre def helloworld ( name ):     print ( 'Hello ' + name ) helloworld ( 'Jo' ) # Hello Jo Parametre olmayinca default kullanimi def helloworld ( name = 'user' ):     print ( 'Hello ' + name ) h