Posts

Showing posts with the label datetime

python - advanced - 13 - Advanced modules 1

Pro: Functions Iterators Advanced Modules Advanced Modules 2 Data Mining Selenium Numpy Pandas Matplotlib Python Beginner Intermediate Advanced Pro python-hosting Other course React Links General JS PHP Programming Python C++ Stuff     Beginner  -  Intermediate  -  Advanced Functions  -  Iterators  -  Advanced modules-1  - Advanced modules-2 Advanced modules Datetime modulu from datetime import datetime simdi = datetime . now () result1 = simdi . year result2 = datetime . ctime ( si

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