Answers for "python code to remove the n index character from a string"

1

delete index in a string python3

string = 'abcdefghi'

# Removing the 3rd idx:

#-----------------------------------
# Method 1:
#-----------------------------------

arr = list(string)

arr.pop(3)

string = ''.join(arr)

# string is now => 'abcefghi'

#-----------------------------------
# Method 2:
#-----------------------------------

string = string[:3] + string[4:]
# string[:idx_to_remove] + string[idx_to_remove_plus_1:]

# string is now => 'abcefghi'
Posted by: Guest on June-11-2020
0

remove n characters from string python

example_string = "Hello there"

def remove_chars(n, string):
    list_of_chars_in_string = [char for char in string] 
    
    for num in range(n):
        list_of_chars_in_string.pop() # Removes last n characters in string
    
    new_string = ''.join(list_of_chars_in_string)
    return new_string
Posted by: Guest on September-03-2020

Code answers related to "python code to remove the n index character from a string"

Python Answers by Framework

Browse Popular Code Answers by Language