1 Star 0 Fork 0

AUST_RM_HongLie/RoboHero-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
myoutput.py 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
import datetime
import enum
import ColorType
Debug_Flag:int=1
def debug(debug_str:str,debug_flag:int=1):
if(debug_flag<=Debug_Flag):
print(debug_str)
def prompt_print(src_str:str):
print_str="[{}]{}".format(add_color(get_time_str(),ColorType.Purple),src_str)
print(print_str)
def add_color(src_str:str,color:str=ColorType.Normal)->str:
return (color+src_str+ColorType.EndType)
def get_time_str()->str:
#return "{}".format(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
return "{}".format(datetime.datetime.now().strftime("%H:%M:%S"))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/aust_-rm_-hong-lie/RoboHero-server.git
git@gitee.com:aust_-rm_-hong-lie/RoboHero-server.git
aust_-rm_-hong-lie
RoboHero-server
RoboHero-server
main

搜索帮助