For the code below:
string = "Hello everybody!"
if 'Hippo' or 'Monkey' in string:
print("Found a hippo or monkey in my string")
the if statement is returning true. Why is this?
For the code below:
string = "Hello everybody!"
if 'Hippo' or 'Monkey' in string:
print("Found a hippo or monkey in my string")
the if statement is returning true. Why is this?