您可以创建一个数组来跟踪字符串中所有非数字字符。最后,使用 "".join 方法连接这个数组。 例如:my_str = 'qwerty123asdf32' non_digits = [] for c in my_str: if not c.isdigit(): non_digits.append(c) result = ''.join(non_digits) print(result) 输出 这将输出qwertyasdf 例如:您也可以使用一行 Python 列表推导来实现这一点。 my_str = 'qwerty123asdf32' result = ''.join([c for c in my_str if not c.isdigit()]) print(result) 输出 这将输出qwertyasdf