python change terminal name

Solutions on MaxInterview for python change terminal name by the best coders in the world

showing results for - "python change terminal name"
Anthony
19 Aug 2019
1import os
2os.system('TITLE Your title here')
3# Note, this will work with any Windows cmd command
4# (Assuming you're using this on a Windows computer)