File size: 607 Bytes
c0b8b1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import random

def scramble_word(word):
  word_list = list(word)
  random.shuffle(word_list)
  return ''.join(word_list)

def play_game(words):
  score = 0
  for word in words:
    scrambled_word = scramble_word(word)
    print(f"Scrambled word: {scrambled_word}")

    guess = input("Your guess: ")

    if guess.lower() == word.lower():
      print("Correct!\n")
      score += 1
    else:
      print(f"Wrong! The correct word was '{word}'.\n")

  print(f"Game over! Your final score is {score} out of {len(words)}.")

words = ["python", "developer", "chatgpt", "algorithm", "keyboard"]

play_game(words)