bhishan

delete_every_other_line

May 29th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # Author  : Bhishan Poudel
  4. # Date    : May 23, 2016
  5.  
  6. # Imports
  7. from __future__ import division
  8. from __future__ import print_function
  9. from itertools import islice
  10.  
  11. with open('input') as fin, open('output', 'w') as fout:
  12.     fout.writelines(islice(fin, None, None, 2))
Advertisement
Add Comment
Please, Sign In to add comment