menetapkan nilai ke karakter dalam string atau file teks dalam python

note:text can contain your text file that is already read or a string

text = 'hello'

vocab=sorted(set(text))
char_to_ind = {char:ind for ind,char in enumerate(vocab)}

JAKKA9