摘要: from colorama import Fore, Back, Style, init import os # 导入os模块 init() class Theme: # 定义类 error = Fore.RED warning = Fore.YELLOW SUCCESS = Fore.GREEN 阅读全文
posted @ 2025-06-17 10:17 nxhujiee 阅读(8) 评论(0) 推荐(0)
摘要: # 一、类class from colorama import Fore, Back, Style, init init() class Theme: # 定义类 error = Fore.RED warning = Fore.YELLOW SUCCESS = Fore.GREEN RESET = 阅读全文
posted @ 2025-06-17 10:07 nxhujiee 阅读(30) 评论(0) 推荐(0)
摘要: # 用类 class 和 变量 自定义颜色主题 # # 一、类class from colorama import Fore, Back, Style, init init() class Theme: # 定义类 error = Fore.RED warning = Fore.YELLOW SUC 阅读全文
posted @ 2025-06-17 03:57 nxhujiee 阅读(12) 评论(1) 推荐(0)