“supprimer n de la chaîne python” Réponses codées

Python supprimant \ n de la chaîne

line = line.strip('\n')
line = line.strip('\t')
Awful Albatross

supprimer n de la chaîne python

a_string = a_string.rstrip("\n")
Faithful Flamingo

Supprimer n de TextPython

# Remove all line breaks from a long string of text

mystr = 'hello world, how do i enter line breaks?'
>>> mystr.replace(' ', '')
'helloworld,howdoienterlinebreaks?'

# You can also replace more then one thing for example:
mystring = mystring.replace('\n', ' ').replace('\r', '')
Repulsive Raven

python comment supprimer n de la chaîne

mylist = []
# Assuming that you have loaded data into a lines variable. 
for line in lines:
    mylist.append(line.strip().split('\t')
Fancy Fly

supprimer n caractères de 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
Random boi

Réponses similaires à “supprimer n de la chaîne python”

Questions similaires à “supprimer n de la chaîne python”

Plus de réponses similaires à “supprimer n de la chaîne python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code