Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. dataset = get_dataset()
  2. for row in dataset.rows:
  3.     for column in columns:
  4.         value = row[column]
  5.         for check in checks[column]:
  6.             newValue = check.apply(value)
  7.         save(newValue, column)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement