After Win10 conhost got VT100 support, I played around with it a bit. Eventually I found out os.system('')
activated the support in Python and got the following result:
import os
print('\033[36mTest\033[0m')
os.system('')
print('\033[36mTest\033[0m')
Output
[36mTest[0m
Test
(Second Test
was printed in blue.)
I have read here that Python does not request that Windows enables VT100, so why does os.system
activate it anyways?