You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/ASCII-Table-wide.svg/2000px-ASCII-Table-wide.svg.png"def fuckfunnies(text): return ''.join([i if ord(i) >= 32 and ord(i) < 127 else ' ' for i in text])if __name__ == '__main__': with open('lovers_full.txt') as f: text = f.read() with open('cleaned.txt', 'a') as f: f.write(fuckfunnies(text))