Answers for "make the program title a name python"

0

make the program title a name python

#For mac or linux
import sys
sys.stdout.write("\x1b]2;Another Title\x07")

# For windows
import os
os.system("title Yet Another Title")
Posted by: Guest on September-03-2021

Code answers related to "make the program title a name python"

Python Answers by Framework

Browse Popular Code Answers by Language