Terminal control/Cursor positioning: Difference between revisions

Added Python implementation.
(Added Python implementation.)
Line 86:
ConsoleLocate(3,6)
Print("Hello")</lang>
 
=={{header|Python}}==
Using ANSI escape sequence, where ESC[y;xH moves curser to row y, col x:<lang Python>
print("\033[6;3HHello!")
</lang>
On Windows it needs to import and init the [http://code.google.com/p/colorama/ colorama] module first.
 
=={{header|REXX}}==
Anonymous user