Termcolor 从字符串中删除颜色

Termcolor remove color from string

在此代码中,它使字符串 'hello' 变为红色:

from termcolor import colored
a = colored('hello', 'red')
print(a)

有没有办法让变量a变成一个没有颜色的普通字符串?

删除字符串的前 4 个字符和最后 4 个字符应该会删除颜色信息。例如:

from termcolor import colored
a = colored('hello', 'red')
print(a)
b = a[5:-4]
print(b)