Is there a way to print a character to a certain point on console using Python (3)? Here's an ideal example on what I'm trying to achieve:
def print_char(x, y, char):
# Move console cursor to 'x', 'y'
# Set character under cursor to 'char'
I know it's possible in some other languages, how about Python? I don't mind if I have to use an external library.
I'm on a Windows 7.