Add files via upload

This commit is contained in:
Dominic Monette
2020-07-13 06:42:48 -04:00
committed by GitHub
parent db35ee9cff
commit 0ded9cf98b
92 changed files with 13631 additions and 0 deletions

19
paramiko-print.py Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python
import time
import sys
print 'Hello world! --> Python 2'
sys.stdout.flush()
print("Hello world! --> Python 3")
sys.stdout.flush()
time.sleep(1)
for i in range(5):
print '%d --> Python 2' % i
sys.stdout.flush()
print("%d --> Python 3") % i
sys.stdout.flush()
time.sleep(1)