Python Random Randint String

from random import randint
print(["Red","Black"][randint(0,1)])
Tense Tiger