Elif the sport answer is "basketball", ChatBot will then use input() to ask Question #3 and store the response as a string in the team variable:

"The Harlem Globetrotters are the best. Do you know the name of the team they always beat?"

Response #3 is printed by checking the user's team answer:

If the team is equal to "Washington Generals", ChatBot should print "Yes, those Generals can never catch a break."

Else, ChatBot should print "I think it's the Washington Generals."

if sport == "basketball":

team = input("The Harlem Globetrotters are the best. Do you know the name of the team they always beat?")
if team == "Washington Generals":
print("Yes, those Generals can never catch a break.")
else:
print("I think it's the Washington Generals.")

elif ((sport == "basketball") and (sport == "Basketball")):

# respond to basketball with a question
team = input("The Harlem Globetrotters are the best. Do you know the name of the team they always beat? ")
# verify and comment on the answer (check for either version with or without capitals)
if ((team == "washington generals") or (team == "Washington Generals")):
print("Yes, those Generals can never catch a break.")
else:
print("I think it's the Washington Generals.")

elif ((sport == "basketball") and (sport == "Basketball")):

team = input("The Harlem Globetrotters are the best. Do you know the name of the team they always beat? ")
if ((team.lower() == "washington generals")):
print("Yes, those Generals can never catch a break.")
else:
print("I think it's the Washington Generals.")