1 Star 0 Fork 0

芒果帆帆/仿命令行的交互式计算器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Color.py 548 Bytes
一键复制 编辑 原始数据 按行查看 历史
芒果帆帆 提交于 2022-03-15 17:06 +08:00 . ###### 更新日志:2022/3/15
# 这里是调用Colorama以在控制台打印彩色文本的部分
from colorama import Fore, init
init(autoreset=True)
lang_successfully_start = "Color.py导入成功!"
class _color:
def prefix(self: int, text):
return Fore.BLUE + text + Fore.RESET
def warning_prefix(self: int, text):
return Fore.YELLOW + text + Fore.RESET
def line(self: int, text):
return Fore.BLUE + text + Fore.RESET
def help(self: int, text):
return Fore.GREEN + text + Fore.RESET
print(lang_successfully_start)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mango-fanfan/TheFirstDemo.git
git@gitee.com:mango-fanfan/TheFirstDemo.git
mango-fanfan
TheFirstDemo
仿命令行的交互式计算器
master

搜索帮助