def who_are_you(green, large):
# Write if-elif-else statements below
if green and large:
return "hulk"
elif green:
return "alien"
elif large:
return "elephant"
else:
return "Bruce Banner"
#This is just for you to see what happens when the function is called
print who_are_you(True, True)
No comments:
Post a Comment