Elif Syntax Error

def askGuessDifficulty():
    printSlow('Alright! I\'ll pick a number from 1 to 100, and you try to guess it!')
    printSlow('''You can do easy mode (E), with infinite guess; normal mode (N), with 10 guesses;
    hard mode (H), with 5 guesses; or custom mode (C), where you pick how many guesses you get!''')
    guessDifficulty = input()
    global guesses
    if guessDifficulty.lower() == 'e':
        guesses = 999
        confirmChoice(input('You want easy mode, right? (Please input \"Yes\" or \"No\")')
    elif guessDifficulty.lower() == 'n': # line 10 <- error on this line, see below for error message
        guesses = 10
        confirmChoice(input('You want normal mode, right? (Please input \"Yes\" or \"No\")')
    elif guessDifficulty.lower() == 'h':
        guesses = 5
        confirmChoice(input('You want hard mode, right? (Please input \"Yes\" or \"No\")')
    elif guessDifficulty.lower() == 'c':
        confirmChoice(input('You want custom mode, right? (Please input \"Yes\" or \"No\")')

File “/home/adamwellerfahy/minigames.py”, line 28
elif guessDifficulty.lower() == ‘n’:
^^^^
SyntaxError: invalid syntax
SyntaxError: invalid syntax

I don’t understand why my “elif” is a syntax error

There is a parenthesis missing in the line above.

All the confirmChoice are missing the parenthesis that encloses its argument.

Oh my gosh I can’t believe I missed that! Thank you so much!

This comes up commonly.