Posts

Showing posts with the label operators

python-beginner - 3 - operator / datetime

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 Operators x = 5 y = 10 z = 20 x += 5  # x=x+5 x -=5 # x=x-5 x *=5 # x=x*5 x /= 5 # x=x/5 x %=5 # x=x%5 y //=5 # y=y//5 # integer sonuc ver : 16//5=3 verir  y **=5 # y=y**5 # y üssü 5 # y*y*y*y*y y **=z # y=y**z # y uzeri/üssü z # 2**3=8 values atanmasi basit atama value=1,2,3 x,y,z=values  print (x,y,z) # 1 2 3 listeye donustur