python出力カラーテキスト

629 ワード

直接コードをつけて、二色球番号を選ぶ小物を書いてフォントの色を表示します.
pip install clint

以下のコードをコピーし、pythonがlistでstringに変換され、カラー文字の出力がどんなに便利かを見ることができます.
#!/usr/bin/python
import random
import string
from clint.textui import colored
red = []
blue = []
red_res=[]
blue_res=[]
for r in range(1,34):
    red.append(r)
for b in range(1,17):
    blue.append(b)
for i in range(6):
    a = random.choice(red)
    red_res.append(str(a))
    red.remove(a)
print colored.green("red ball are:")+colored.red(",".join(sorted(red_res))),colored.green("blue ball is:")+colored.blue(random.choice(blue))