It's worth noting that even if the precedence were different, it wouldn't work:
if letter == ("O" or "Q"):
This is no good, since "O" is true-ish*, so "O" or "Q" is "O", so we would just compare letter to "O" and ignore "Q" completely.
In English, we think of "O" or "Q" as an abstract concept that is non-deterministically either "O" or "Q" according to whatever the logic requires. Computers, however, deal in deterministic quantities. The closest we can get to the English phrasing Is the letter "O" or "Q"? (and more precise, while we're at it :) ) is Is the letter one of the following: "O", "Q"? which we can formalize a bit as Is the letter in the following set: {"O", "Q"}?
Python allows us to construct sets easily (with the set) keyword, but we must still be explicit about the fact that we are checking if letter is in this set (i.e., we test for set membership, not equality). Fortunately, we don't strictly require a set to check for membership. (If we had a huge number of elements to test, and we only needed to construct the set once but had many letters to test, then we might save time overall by formally creating a set, since they're optimized for the membership test; with a tuple like ("O", "Q"), Python needs to check each element one at a time. But here, the tuple works just fine.)
In short: you fix the problem the way the others said, but their explanation of the problem ought to leave you asking more questions (which I hope I answered here).