• 2022-06-29
    在Python的turtle库中颜色可以用以下方式用示( )
    A: 用字符串表示颜色,如t.color("red")
    B: 用十六进制表示RGB颜色值,如t.color('
    C: ff0000')
    D: 255模式下的RGB颜色表示方法: t.colormode(255) t.color(255,0,0)
    E: 默认的1模式下的RGB表示方法: t.colormode(1) t.color(0,1,0)