Posts

Showing posts with the label beginner

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

python-beginner - 5 - for ve while döngüleri

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 numbers =[ 1 , 2 , 3 , 4 , 5 ] for num in numbers : # numbers daki sayilari al ve num icine at     print ( num , " - Hi" ) # bu satırın indent olması şart # 1 - Hi 2 - Hi 3 - Hi 4 - Hi 5 - Hi names =[ 'kenan' , 'yasu' , 'almushka' ] for name in names :     print ( f 'my name is { na