When running this code, I got an error saying "expected indent block". I've tried a few solutions but can't seem to fix it.
elif fteam in teams and fteam != "Chelsea ":
opyn = input("Want to hear opinion? ")
if opyn == "Yes":
#Run Dictionary
elif opyn != "Yes":
print("Okay, goodbye!")
The error is on the elif
on line 5 of the snippet.