Skip to content
Advertisement

why do string.strip() function removed the character i want in some words and remove none in others

i am trying to remove the ‘n’ characters a string because when i read the lines from a file it include the ‘n’ characters!! input:

JavaScript

output:

JavaScript

Advertisement

Answer

Because you are modifying the list while iterating over it, halfway through the loop, list_of_names.remove(name) is trying to remove the wrong element. This is also why the order of the list changes. This is unnecessarily complex.

Instead of modifying the old list, consider simply appending to a new, empty list.

JavaScript

Or, for shorter code, use list comprehension:

JavaScript

(Note: mode='r' is redundant because the default mode is read.)

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement