Reputation: 41
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
found it
import os os.system("title XYZ")
Upvotes: 4