Comment changer le titre d'une application console dans Python
#First install win32 do that by typing this in the cmd: pip install win32
import win32console
win32console.SetConsoleTitle("You title here!")
Jeppe Pro