为什么 termcolor coes 在 pycharm 中不起作用?我从 cmd 安装它,但它在 vscod 中工作
你可以看我的代码
def print_board():
j = 1
for i in board:
end = " "
if j % 3 == 0:
end = "\n\n"
if i == 'X':
print(colored(f"[{i}]", "red"), end=end)
elif i == 'O':
print(colored(f"[{i}]", 'blue'), end=end)
else:
print(f"[{i}]", end=end)
j += 1
在打印中尝试此代码: 打印(彩色(f“[{i}]”,'蓝色','on_white',['blink'],force_color ='True'),end = end)