Python word guessing game (simple version)

Guess the word game
ideas

  1. Several words are stored in a words list, for example:["extends", "private", "static", "public"]

  2. Take a random word from the words list and put it into the word list, for example:Insert picture description here

  3. Use a tips list to store the prompt information, the length of the word taken out by the machine is the same, and the initialization is as follows:Insert picture description here

  4. A random number is placed in a list, and the length of the word taken out by the machine is the same, and it is not repeated.Insert picture description here

  5. When using the first two elements in the random number list, replace the elements of the prompt information list with the elements in the word list:Insert picture description here

  6. The rest is the game logic. When you need a hint, traverse the next list of random numbers and replace the information

Directly on the code:

import random
#初始化信息↓↓↓↓↓↓↓
# 存放单词的列表
words = ["extends", "private", "static", "public", "void", "return", "super","package","throws"]
#随机获取单词列表里的一个单词
word = list(words[random.randint(0, len(words) - 1)])
#随机数列表,存放着与单词长度一致的随机数(不重复)
ranList = random.sample(range(0, len(word)), len(word))
#存放提示信息
tips = list()
#初始化提示信息
#存放跟单词长度一致的下划线
for i in range(len(word)):
	tips.append("_")
#随机提示两个字母
tips[ranList[0]] = word[ranList[0]]
tips[ranList[1]] = word[ranList[1]]

#函数部分↓↓↓↓↓
#展示菜单
def showMenu():
	print("需要提示请输入'help?'")
	print("结束游戏请输入'quit!'")
#显示提示信息
def showtips():
	for i in tips:
		print(i, end=" ")
	print()
#需要提示
def needTips(tipsSize):
	#至少有两个未知字母
	if tipsSize <= len(word)-3:
		tips[ranList[tipsSize]] = word[ranList[tipsSize]]
		tipsSize += 1
		return tipsSize
	else:
		print("已没有提示!")

#主要运行函数↓↓↓↓↓↓
def init():
	print("------java关键字版本-------")
	tipsSize = 2
	showMenu()
	while True:
		print("提示:",end="")
		showtips()
		guessWord = input("猜一下这个单词:")
		#  <''.join(word)>把word列表的内容转换成字符串
		if guessWord == ''.join(word):
			print("恭喜你,猜对了!就是%s!"%(''.join(word)))
			break
		elif guessWord == 'help?':
			tipsSize = needTips(tipsSize)
		elif guessWord == 'quit!':
			break
		else:
			print("猜错了!")
			continue
init()

Running result: Insert picture description hereInsert picture description here
click like and support! Thank you!

Guess you like

Origin blog.csdn.net/weixin_44864260/article/details/109298449