Created
September 25, 2014 20:43
-
-
Save davidallsopp/66a89e59efe37d03904b to your computer and use it in GitHub Desktop.
Example for code club (needs tweaking for Python 3 though)
This file contains hidden or 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 random | |
| import sys | |
| while True: | |
| for i in range(80): | |
| sys.stdout.write(random.choice("\/|-")) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment