PYTHON: The following puzzle is known as The Big Cross-OutSwindle.“Beginning with the word ‘NAISNIENLGELTETWEORRSD,’cross out nine letters in such a way that the remaining lettersspell a single word”. Write a program that creates variables namedstartingWord, crossedOutLetters,andremainingLetters. The program should assign tostartingWord the string given in the puzzle, assigntocrossedOutLetters a list containing every other letterof startingWordbeginning with the initial letterN, and assign to remainingLetters a listcontaining every other letter of startingWord beginningwith the second letter, A. The program should then displaythe values of the three variables.