Comment utiliser la fonction inférieure du point
Dif_Level = input("What is your level of difficulty? Hard, Medium or Easy")
if Dif_Level.lower() == 'hard':
elif Dif_Level.lower() == 'medium':
elif Dif_Level.lower() == 'easy':
TopFirebolt_20