If you just want to remove the first 'n' use:
old = "open sesame nnnn"
# replace first occurance of 'n'
new = old.replace('n', '', 1)
print new # 'ope sesame nnnn'
Reputation Points: 625
Solved Threads: 211
Posting Virtuoso
Offline 1,704 posts
since Aug 2005