RJM
0
Q:

remove character from string python

s = 'abc12321cba'

print(s.replace('a', ''))
1
#you can use replace function to remove specific word.
>>> message = 'you can use replace function'
>>> message.replace('function', '')
>>>'you can use replace '
2
for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
5
"Str*ing With Chars I! don't want".replace('!','').replace('*','')
13
string = 'Hello WorldR'
# Lets say for instance you want to remove the R to display
# Hello World

print(string[:-1]) 
"""
The [:-<number of chars>] to remove from string starting from
right to left
"""
5
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
0

New to Communities?

Join the community