def print_color(text: str, fg: Color = Color.BLACK.value): print(f'\033[{fg}m{text}\033[0m') # 打印红色文字 print_color('Hello World' ...
確定! 回上一頁