Word Scramble Game

Welcome to the Word Scramble Game page.

This page contains a brief description and implementation instructions for the project.

Project Description

Presents a scrambled version of a word, and the user must guess the original. The program shuffles letters of a randomly chosen word and asks the player to unscramble it.

Project Requirements

Python 3.x (built-in random).

How to Run the Project

  1. Write a script (e.g. scramble.py) with a list of words. For each round, pick one and shuffle its letters (random.sample or random.shuffle).
  2. Run it: python scramble.py. See the scrambled word and type your guess. Tell correct/incorrect.

Key Concepts Learned

Possible Extensions

Troubleshooting & Debugging

See Troubleshooting & Debugging.

← Back to Python Programming Page