Here are some basic rules with if/else blocks.
elif or an else without an ifelse without an elifRemember, to check if two values are the same use the == operator.
same = 5 == 6
# same is False
same = 6 == 6
# same is True
There is a bug in the check_high_score function! Add the proper conditional statement to fix the bug. If the names match, return the string:
You are the highest scoring player!
Otherwise, return:
You are not the highest scoring player!
The <= operator compares strings alphabetically and works when names are equal (e.g., "lane" <= "lane" is True).