does python have console title code example
Example 1: python change terminal name
import os
os.system('TITLE Your title here')
# Note, this will work with any Windows cmd command
# (Assuming you're using this on a Windows computer)
Example 2: python how to change command prompt title
from os import system
system("title " + "Insert the title here")