rsegal
0
Q:

how to remove all characters from a string in python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
5
s = 'abc12321cba'

print(s.replace('a', ''))
1
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