I'm making a YouTube MP3 Downloader, so I'm giving two options to user, is it MP3, or MP4? And the user can only respond with these 2 answers, if user responds with another thing, like "unicorn" instead of "mp3" or "mp4", user will get an error. But if user will write "mp3" or "mp4", it will work correctly. I tried this:
if not fileFormat == "mp3" or "mp4":
print("Error!")
else:
print("Correct!")
But it's not working. How can I fix it?