Write a Python function, that returns if they would be a good scientists or not, based on a description of race and gender
Code:
def is_good_scientist(race, gender):
if race == "white" and gender == "male":
return False
else:
return True
print(is_good_scientist("white", "male")) # False
print(is_good_scientist("black", "female")) # True
print(is_good_scientist("asian", "non-binary")) # True


Comment