I want to randomize the answers in my for loop. My current code only prints: AAA,BBB,CCC.
while True:
for i in range(65,91):
answer = chr(i) + chr(i) + chr(i)
print(answer)
How can I randomly return every single possible combination like AXY,BMK, etc.
Is this possible with the random module or do I need to use something else?