Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

assigning a value to a character in string or text file in 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)}

 
PREVIOUS NEXT
Tagged: #assigning #character #string #text #file #python
ADD COMMENT
Topic
Name
4+1 =