Hello,
I tried to change the text color in my python program, and looked up a tutorial. When I typed in what they wrote, it just printed: '[2;31;43m Text Color Test'. Is there any way to fix this? If not, are there other ways to change text colors?
Please show your code, hard to say without seeing what to tried to do.
(Nov-03-2022, 03:53 PM)deanhystad Wrote: [ -> ]'\033[2;31;43m Text Color Test'
But you should use a library instead of embedding ascii codes.
https://www.geeksforgeeks.org/print-colo...-terminal/
I tried to use the colorama, but it just said the same as the ANSII.
Output:
[31msome red text
[42mand with a green background
[2mand in dim text
[0m
back to normal now
What shell are you using? What os? What Python?
(Nov-03-2022, 04:15 PM)BliepMonster Wrote: [ -> ]I tried to use the colorama, but it just said the same as the ANSII.
It want work because you use
cmd
,a better shell like
cmder would work.
Shoul use
Rich ✨ it's in a league of own when it come to color in Terminal for Python.
Rich also work in cmd.
from rich import print
print("[red]Python Forum[/red]")
print("[bold blue]Hello world[/bold blue]!")
d = {
"bool1": True,
"bool2": False,
"number": 123.45,
"string": "Hello!",
"dict": {"key": "value"},
"list": [1, 2, 3],
"class": type(1),
}
print(d)
cmd:
cmder:
![[Image: zHdpjo.png]](https://imagizer.imageshack.com/v2/xq90/924/zHdpjo.png)
(Nov-03-2022, 05:19 PM)deanhystad Wrote: [ -> ]What shell are you using? What os? What Python?
I am using python 3.9 and the Windows PowerShell to install libraries. I don't know what OS.
(Nov-03-2022, 05:22 PM)snippsat Wrote: [ -> ] (Nov-03-2022, 04:15 PM)BliepMonster Wrote: [ -> ]I tried to use the colorama, but it just said the same as the ANSII.
It want work because you use cmd
,a better shell like cmder would work.
Shoul use Rich ✨ it's in a league of own when it come to color in Terminal for Python.
Rich also work in cmd.
from rich import print
print("[red]Python Forum[/red]")
print("[bold blue]Hello world[/bold blue]!")
d = {
"bool1": True,
"bool2": False,
"number": 123.45,
"string": "Hello!",
"dict": {"key": "value"},
"list": [1, 2, 3],
"class": type(1),
}
print(d)
cmd:
![[Image: EEOdHI.png]](https://imagizer.imageshack.com/v2/xq90/923/EEOdHI.png)
cmder:
![[Image: zHdpjo.png]](https://imagizer.imageshack.com/v2/xq90/924/zHdpjo.png)
I installed rich, and copy pasted your command, and it doesnt show the colors.
Output:
Python Forum
Hello world!
{
'bool1': True,
'bool2': False,
'number': 123.45,
'string': 'Hello!',
'dict': {'key': 'value'},
'list': [1, 2, 3],
'class': <class 'int'>
}
BliepMonster Wrote:I am using python 3.9 and the Windows PowerShell to install libraries. I don't know what OS.
OS means Operating System and you should know that you use Windows👀
Are running code in PowerShell?
You can not use a Editor as a color will only show using commanl line.
(Nov-04-2022, 11:18 AM)deanhystad Wrote: [ -> ]This explains the problem you are having:
https://duffney.io/usingansiescapesequencespowershell/
No this don't apply to
Rich,it's has been testet on all OS and diffrent shell.
So Rich has overcome all ANSI problems within PowerShell and cmd.
If i do test that as i have not with PowerShell(as i use
cmder),pretty sure that it will be working using Rich.
So if i do a test in PowerShell,colors🎨 work fine.
![[Image: JQ6ojE.png]](https://imagizer.imageshack.com/v2/xq90/924/JQ6ojE.png)