0
from colorama import Fore, init, Style
init(convert=True)
print(Fore.GREEN + "Green")
print(Fore.YELLOW + "Yellow")
print(Fore.RED + "Red")
print(Fore.BLACK + "Black")
print(Fore.BLUE + "Blue")
print(Fore.CYAN + "Cyan")
print(Style.RESET_ALL + '')
input()
を動作しません。私はそれを修正するために何ができますか? 私は窓を使用しています。
これは非常に奇妙です。赤と黒の線の後に緑と黄色の線を置こうとしましたか? – Daneel
はい、私はそれを試みますが、何もしません... – user3096578
thats strange、私はあなたが使っているIDEを尋ねることができますか?コンソールで実行すると動作しますか? – WhatsThePoint