I am trying to decode and ascii which is combined with string
example
glbosworth
But i am not getting exact output
'glbosworth'.decode("ascii")
output
u'glbosworth'
if u remove this characters &# and try only with integers i get this
>>> chr(108)
'l'
>>> chr(115)
's'
>>> chr(111)
'o'
>>> chr(114)
'r'
>>> chr(104)
'h'
expected output
glbosworth
How can i decode this one "glbosworth" to expected output