python comment imprimer quelque chose dans un endroit spécifique
import sys
def print_there(x, y, text):
sys.stdout.write("\x1b7\x1b[%d;%df%s\x1b8" % (x, y, text))
sys.stdout.flush()
Breakable Baboon