I propose a syntax for constructing/filtering strings analogous to the one available for all other builtin iterables. It could look something like this.>>> dirty = "f8sjGe7">>> clean = c"char for char in dirty if char in string.ascii_letters">>> clean'fsjGe'Currently, the best way to do this (in the general case) seems to be the following.>>> clean = "".join(char for char in dirty if char in string.ascii_letters)