You want me to generate a Python code snippet for something more interesting!
Let's say... a simple Rock, Paper, Scissors game!
_Python Code Snippet:_
```
import random
def play_game():
user_choice = input("Enter your choice (rock/paper/scissors): ")
options = ["rock", "paper", "scissors"]
computer_choice = random.choice(options)
print("Computer chose:", computer_choice)
if user_choice == computer_choice:
print("It's a tie!")
elif (user_choice == "rock" and computer_choice == "scissors") or \
(user_choice == "scissors" and computer_choice == "paper") or \
(user_choice == "paper" and computer_choice == "rock"):
print("You win!")
else:
print("Computer wins!")
play_game()
```
Run this code, and you can play a game of Rock, Paper, Scissors against the
computer!
Let me know if you want something else!