Skip to content

Instantly share code, notes, and snippets.

@mtimkovich
Created February 21, 2019 01:54
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 mtimkovich/32a2a8cbd181bb71f0e2df511d35f13a to your computer and use it in GitHub Desktop.
Save mtimkovich/32a2a8cbd181bb71f0e2df511d35f13a to your computer and use it in GitHub Desktop.
Split
#!/usr/bin/env python
import fileinput
for line in fileinput.input():
print(line.split())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment