终端颜色在Python中发生变化

时间:2016-11-02 16:01:29

标签: python

我有这段代码

let stylesArray = [styles.punt1, styles.punt2, 
                    styles.punt3, styles.punt4, 
                    styles.punt5, styles.punt6, 
                    styles.punt7, styles.punt8
                  ]

 {stylesArray.map(function(object, i){
    console.log(object);
    <TouchableHighlight onPress={openQuestionOverview} style={[styles.punt, object]}>
      <Image source={vraag1} />
    </TouchableHighlight>
 })}

颜色会发生变化,但由于某种原因,每种颜色都会发生变化。

例如,Mage是蓝色的,之后的每个文本都是蓝色。

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要终止颜色

'\033[0m'

所以你想要

 print "\033[91m Warrior \033[96m Mage\033[0m"