hi,
anybody can tell me that how can i read a text file and then convert it in to ascii value
thanks in advance
bye
Hi,
You can take character by character of the text file string and then can convert it into ASCII by int(str[a]) where a will be a number of letter which is of length of string. You can use for loop for that.
Comment