import sys st = sys.argv[1] def convert2hash(st): t = 1 sm = 0 for i in st: sm = sm*10 + (ord(i)%10) print(sm) convert2hash(st)