Posts

Showing posts with the label error handling

python - intermediate - 9 - error handling

Intermediate: OOP Modules Error Handling File Mngt Python Beginner Intermediate Advanced Pro python-hosting Other course React Links General JS PHP Programming Python C++ Stuff Hata ayıklama python`dan exception kisminda hatalarin cesitleri bulunabilir Zero division error try :     x = int ( input ( 'x: ' ))     y = int ( input ( 'y: ' ))     print ( x / y ) except ZeroDivisionError :     print ( 'y icin 0 girilemez' ) # x: 10 y: 0 y icin 0 girilemez Value error try :     x = int ( input ( 'x: ' ))     y = int ( input