Elaine Miller
Elaine Miller

Reputation: 41

How do i change the console title of a python script like console.title in c#

Is there a way to change title of a console based py program? so when i convert it to exe it'd show as "Test - v.1.5" without using tkinter, kivy etc

Upvotes: 0

Views: 789

Answers (1)

Elaine Miller
Elaine Miller

Reputation: 41

found it

import os
os.system("title XYZ")

Upvotes: 4

Related Questions