Skip to content

Instantly share code, notes, and snippets.

@cswinter
Created July 8, 2018 22:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cswinter/c4d7a410abaa65adc89650d2d17ec11e to your computer and use it in GitHub Desktop.
Save cswinter/c4d7a410abaa65adc89650d2d17ec11e to your computer and use it in GitHub Desktop.
import sys
for line in sys.stdin:
print ','.join([item if len(item.strip()) else '\N'
for item in line.strip().split(',')])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment