Set Windows command-line terminal title in Python December 29, 2023 by Tarik On Windows, a simple console command will suffice: from os import system system("title " + myCoolTitle) Nice and easy.