when I run this code:
def greet(lang):
if lang == "es" or "espanish":
print("Hola")
elif lang == "fr" or "french":
print("Bonjour")
greet(input ("What is your lang: "))
and when I type in the input fr
or french
it's always giving me Hola
, how I fix it?