Advertisement
Guest User

Untitled

a guest
Aug 4th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. last_sym = line[-1:]
  2. if last_sym != ',' and \
  3.         last_sym != ':' and \
  4.         last_sym != '=' and \
  5.         last_sym != '--' and \
  6.         len(line) > min_len:
  7.     filtered = True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement