Posts: 26
Threads: 7
Joined: Sep 2022
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?
The only stupid person in the world, is the person that doesn't ask questions.
-Someone smart
Posts: 12,022
Threads: 484
Joined: Sep 2016
Please show your code, hard to say without seeing what to tried to do.
Posts: 6,778
Threads: 20
Joined: Feb 2020
'\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/
BliepMonster likes this post
Posts: 26
Threads: 7
Joined: Sep 2022
(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
The only stupid person in the world, is the person that doesn't ask questions.
-Someone smart
Posts: 6,778
Threads: 20
Joined: Feb 2020
Nov-03-2022, 05:19 PM
(This post was last modified: Nov-03-2022, 05:22 PM by deanhystad.)
What shell are you using? What os? What Python?
Posts: 7,310
Threads: 123
Joined: Sep 2016
Nov-03-2022, 05:22 PM
(This post was last modified: Nov-03-2022, 05:22 PM by snippsat.)
(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:
Posts: 26
Threads: 7
Joined: Sep 2022
(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.
The only stupid person in the world, is the person that doesn't ask questions.
-Someone smart
Posts: 26
Threads: 7
Joined: Sep 2022
(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'>
}
The only stupid person in the world, is the person that doesn't ask questions.
-Someone smart
Posts: 6,778
Threads: 20
Joined: Feb 2020
Posts: 7,310
Threads: 123
Joined: Sep 2016
Nov-04-2022, 12:23 PM
(This post was last modified: Nov-04-2022, 12:23 PM by snippsat.)
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.
|