I\'m running several instances of a certain Python script on a Windows machine, each from a different directory and using a separate shell windows. Unfortunately Windows giv
On Windows, a simple console command will suffice:
from os import system system("title "+myCoolTitle)
Nice & easy.