J'essaie d'éviter d'utiliser autant d'instructions if et de comparaisons et d'utiliser simplement une liste, mais je ne sais pas comment l'utiliser avec str.startswith
:
if link.lower().startswith("js/") or link.lower().startswith("catalog/") or link.lower().startswith("script/") or link.lower().startswith("scripts/") or link.lower().startswith("katalog/"):
# then "do something"
Ce que j'aimerais qu'il soit, c'est:
if link.lower().startswith() in ["js","catalog","script","scripts","katalog"]:
# then "do something"
Toute aide serait appréciée.