Created
September 1, 2015 19:39
-
-
Save noahp/105d21e50f4c449db0a9 to your computer and use it in GitHub Desktop.
python_droplet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
if __name__ == "__main__": | |
infile = sys.argv[1] | |
with open(infile, 'r') as f: | |
for line in f: | |
print 'first line: ' | |
print line | |
# more processes? | |
break | |
# wait for button | |
raw_input('show me what you goooootttt') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment