This commit is contained in:
2023-03-04 10:48:49 +01:00
parent e9a848835d
commit 5512ec868c
9 changed files with 97 additions and 11 deletions

17
teil8/exception.py Normal file
View File

@@ -0,0 +1,17 @@
def func(wert):
if not isinstance(wert,int):
raise TypeError('weertr muss ein int sein.')
if wert >0:
print('Wert ist in Ordnung')
else:
raise ValueError('wert muss größer 0 sein')
func(7)
func(-1)

27
teil8/finally.py Normal file
View File

@@ -0,0 +1,27 @@
# encode utf-8
def func(wert):
if not isinstance(wert,int):
raise TypeError('weertr muss ein int sein.')
if wert >0:
print('Wert ist in Ordnung')
else:
raise ValueError('wert muss größer 0 sein')
func(7)
try:
func(-1)
except ValueError:
print('Da haben wir doch einen falschen Wert übergeben.')
finally:
# Dieser Block wird immer ausgeführt, egal ob mit oder ohne Exception
# Hier kannst z.B. Datenbankverbindungen schliessen, Speicher freigeben oder temporäre Dateien löschen
pass

7
teil8/meineexception.py Normal file
View File

@@ -0,0 +1,7 @@
class MeineException(Exception):
pass
# def __init__(message):
# super().__init__(message)

9
teil8/myexception.py Normal file
View File

@@ -0,0 +1,9 @@
from meineexception import MeineException
def func():
raise MeineException('meine eigene Exception')
func()

21
teil8/try.py Normal file
View File

@@ -0,0 +1,21 @@
def func(wert):
if not isinstance(wert,int):
raise TypeError('weertr muss ein int sein.')
if wert >0:
print('Wert ist in Ordnung')
else:
raise ValueError('wert muss größer 0 sein')
func(7)
try:
func(-1)
except ValueError:
print('Da haben wir doch einen falschen Wert übergeben.')