Alle Dateien aus dem Pythonkurs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
224 B

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)