import random
Colours = ["VIOLET","INDIGO","BLUE","GREEN", "YELLOW","ORANGE","RED"]
End = randrange(2)+3
Begin = randrange(End)+1
for i in range(Begin,End):
print(Colours[i],end="&")
Answers
Answered by
1
Answer:
VIBGYOR rainbow colours ROYGBIV
Answered by
0
Answer:
I believe there is no output as the begin value goes on increasing the end value
Similar questions