Untitled
unknown
plain_text
2 years ago
334 B
2
Indexable
Never
import random # List of computer parts to use in the puzzle computer_parts = ['CPU', 'RAM', 'GPU', 'Motherboard', 'Hard Drive', 'SSD', 'Power Supply', 'Case'] # Shuffle the list random.shuffle(computer_parts) # Print the shuffled list print("Computer Parts Puzzle:") print("----------------------") print(' '.join(computer_parts))