🎮 Interactive List Replacement Game in Python! 🔄
This simple Python game lets users replace values in a list by choosing a position and inserting a new value! 🏆
- 📌 Displays the current list before and after changes.
- 🎯 User selects a position (0, 1, or 2) to modify.
- ✍️ Replaces the chosen position with a new value.
- 🔄 Asks if the user wants to continue playing or exit.
- Displays the list:
[0, 1, 2]
- User selects a position: e.g.,
1
- User enters a new value: e.g.,
"X"
- List updates:
[0, 'X', 2]
- User decides to continue or stop 🔁