In C++ I can type system("pause") or system("color A") to change things right inside the executing command prompt window.
Is it also possible with Python? I'd like to color my text of my script that way.
For Windows Prompts you just have to import os
and then add os.system('color 1')
to your code.
You can find colors by starting cmd and executing color help
.
If you are looking for something else I strongly suggest you to look at this link and this link, both are questions here in stackoverflow and are very similar to yours.