python-CSD-kursu/python-temel/exception.example.6.py

10 lines
349 B
Python
Raw Normal View History

2023-08-20 11:28:49 +00:00
try:
val = int(input('Bir değer giriniz:'))
print(val * val)
print('else bölümü yalnızca exception oluşmadığı zaman çalıştırılır...')
except TypeError:
print('Girilen değerin türü uygun değil!')
except:
print('Diğer bir nedenden dolayı exception oluştu')
print('Bu deyim her zaman çalıştırılacaktır')