how to remove '_' from number values in a list in python code example
Example: remove all integers from list python
no_integers = [x for x in mylist if not isinstance(x, int)]
no_integers = [x for x in mylist if not isinstance(x, int)]