Python set subset checks with <=: Spelling Bee word validation

Playing NYT Spelling Bee? Use Python to see if your word only uses allowed letters (ignoring length + center):

letters = set('ygoanik')  # From Mon, Jan 5

With sets, <= checks “subset or equal”:

set('again') <= letters    # True
set('garage') <= letters   # False (r + e)