Answers for "python3 title"

0

make the program title a name python

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

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

Python Answers by Framework

Browse Popular Code Answers by Language