mirror of
https://github.com/clearml/wexpect-venv
synced 2025-01-31 02:46:59 +00:00
12 lines
277 B
Python
12 lines
277 B
Python
import time
|
|
|
|
# Wait the given time
|
|
for i in range(2):
|
|
print('apple\tbanana\tmelone\tcherry')
|
|
print('pepper tomato\tcorn cabbage')
|
|
print('apple banana\tmelone\tcherry2')
|
|
print('pepper tomato\tcorn cabbage2')
|
|
print('prompt> ')
|
|
time.sleep(0.5)
|
|
|