我目前正在用 Python 制作游戏。
我希望代码阅读:
[00:00:00] Name|Hello!
这是我的代码:
print(Fore.YELLOW + Style.BRIGHT + '['),
print strftime("%H:%M:%S"),
print ']',
print(Style.BRIGHT + Fore.RED + ' Name'),
print(Fore.BLACK + '|'),
print(Fore.WHITE + Style.DIM + 'Hello!')
time.sleep(5)
相反 - 由于某种原因 - 它变成了这样:
[ 00:00:00 ] Name | Hello!
我不知道这段代码有什么问题,或者如何修复它。
我真的很感激我能得到的所有帮助!谢谢你。