How to remove N characters from the middle of a string in Python

2 Answers

0 votes
str_ = 'abc123def'

mid = len(str_) // 2

N = 3

str_ = str_[:mid - N // 2] + str_[mid + 1 + N // 2:]

print(str_)  


 
 
'''
run:
 
abcdef

'''

 



answered Jul 8, 2022 by avibootz
0 votes
str_ = 'abc123defg'

mid = len(str_) // 2

N = 3

str_ = str_[:mid - N // 2] + str_[mid + 1 + N // 2:]

print(str_)  


 
 
'''
run:
 
abc1efg

'''

 



answered Jul 8, 2022 by avibootz

Related questions

...