Получение Vocab от текстового файла Python

note:text is the variable that contains your already read textfile

vocab=sorted(set(text))
JAKKA9