Obtener vocab de un archivo de texto Python

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

vocab=sorted(set(text))
JAKKA9