Some version of this should fix the problem: ```python filtered_string = filter(lambda x: x in string.printable, myStr) ``` [via](https://stackoverflow.com/a/92488/5006)
Some version of this should fix the problem:
via