Skip to content

Instantly share code, notes, and snippets.

@buxtonpaul
Created June 19, 2017 13:13
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 buxtonpaul/f5292a7886e9a9c3666cd8d23b883afd to your computer and use it in GitHub Desktop.
Save buxtonpaul/f5292a7886e9a9c3666cd8d23b883afd to your computer and use it in GitHub Desktop.
Sample python fifo consumer
while True:
a=raw_input()
if not a:
continue
print a[::-1]
if a == "Hello 9":
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment