I\'m trying to develop a system that can change my string into a unique integral value, meaning say for example the word \"account\" has an encrypted numerical value of 0891
You can do this:
SEPARETOR = '000' string_to_hash = "some_string" hashed_result = int(SEPARETOR.join(list(str(ord(character)) for character in string_to_hash)))
Enjoy!