We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a66b0ad commit c09b904Copy full SHA for c09b904
10print2.py
@@ -0,0 +1,15 @@
1
+#!/usr/bin/env python
2
+
3
+import random
4
+import time
5
6
+try:
7
+ while True:
8
+ line = u''
9
+ for _ in range(80):
10
+ line += unichr(int(9585.5 + random.random()))
11
+ print line
12
+ time.sleep(0.2)
13
14
+except KeyboardInterrupt:
15
+ exit(0)
print10.py 10print3.py
README.md
@@ -1,6 +1,6 @@
-## 10 PRINT in Pyhton 3
+## 10 PRINT in Pyhton 2 and 3
-This is a pure Python 3 implementation of the 10 PRINT Commodere 64 program.
+This is a pure Python implementation of the 10 PRINT Commodere 64 program.
If you never heard of "10 PRINT" [there is a book about it](https://10print.org/) !
0 commit comments