Is there a way to change the console font in Windows in python 2.6?
I\'m on Windows 7.
ie:
import os
os.console.font = \'Lucida Console\'
Probably not. In Windows console font is the property of and managed by the cmd.exe program.
As with everything, it's possible that if you reverse engineer how cmd.exe works, where it stores information about the font, how to force it to reload it etc. you might be able to do hack it (in any language) but there is no functionality provided by the system in a supported and documented way on how to do it.