In a string
s = 'I am a damn string'
If I wish to remove the characters from index from 7 to 10, (i.e. to remove a slice and keep the remainder string).
I know, I can do like --
newString = s[:6] + s[11:]
Is there any better (pythonic) way?
Thanks.