mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-14 05:06:55 +01:00
WIP: part 4 of module 6
This commit is contained in:
8
06/alchemy/grimoire/validator.py
Normal file
8
06/alchemy/grimoire/validator.py
Normal file
@@ -0,0 +1,8 @@
|
||||
def validate_ingredients(ingredients: str) -> str:
|
||||
try:
|
||||
for ingredient in ingredients.split(" "):
|
||||
if ingredient not in ["fire", "water", "earth", "air"]:
|
||||
raise ValueError
|
||||
return f"{ingredients} - VALID"
|
||||
except ValueError:
|
||||
return f"{ingredients} - INVALID"
|
||||
Reference in New Issue
Block a user