RosettaCodeData/Task/Terminal-control-Preserve-screen/Python/terminal-control-preserve-screen.py

13 lines
185 B
Python
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
#!/usr/bin/env python
import time
print "\033[?1049h\033[H"
print "Alternate buffer!"
for i in xrange(5, 0, -1):
print "Going back in:", i
time.sleep(1)
print "\033[?1049l"