assignment1-澳大利亚Python一对一教学

2022-03-30 16:55:58 浏览数 (1)

你好,我是悦创。

5.3 remove word(words: tuple[str, ...], word: str) -> tuple[str, ...]

Returns a copy of words with word removed, assuming that words contains word exactly once.

在这里插入图片描述在这里插入图片描述
代码语言:python代码运行次数:0复制
# 作业基本要求
def remove_word(t_words, word) -> tuple:
    lst = list(t_words)
#     i = lst.index(word)
    lst.remove(word)
    return tuple(lst)
代码语言:python代码运行次数:0复制
words = ("Python", "apples", "candle")
new_words = remove_word(words, "candle")
print(words)
print(new_words)

扩展:

代码语言:python代码运行次数:0复制
def remove_word(t_words, word) -> tuple:
    if word in t_words:
        lst = list(t_words)
        lst.remove(word)
        return tuple(lst)
    else:
        return t_words
代码语言:python代码运行次数:0复制
words = ("Python", "apples", "candle")
new_words = remove_word(words, "aiyc")
print(words)
print(new_words)

5.4 prompt user(guess number: int, words: tuple[str, ...]) -> str

Prompts the user for the next guess, reprompting until either a valid guess is entered, or a selection for help, keyboard, or quit is made. Returns the first valid guess or request for help, keyboard, or quit. Note that the processing of the guess once it has been entered does not need to be handled in this function; it will be handled in functions defined later in this section. The returned string must be lowercase.

这个意思就是从 vocab.txt 的范围猜词,然后必须是猜的词必须是六个字母,如果填了不在 vocab.txt 里的词就会识别不出来。

5.4.1 Example usage

在这里插入图片描述在这里插入图片描述
代码语言:python代码运行次数:0复制
def load_words(filename: str) -> tuple[str,...]:
	""" Loads all words from the file with the given name.

	Parameters:
		filename (str): The name of the file to load from. Each word must be on
						a separate line.

	Returns:
		tuple<str>: A tuple containing all the words in the file.
	"""
	with open(filename, 'r') as file:
		words = [line.strip() for line in file.readlines()]
	return tuple(words)

def prompt_user(number, content):
	i = 1
	while i <= number:
		guess_text = input("Enter guess "   str(number)   ":")
		# print(i) # 判断 while 循环次数
		if len(guess_text) < 6:
			print("Invalid! Guess must be of length 6")
		elif guess_text in content:
			break
		else:
			print("Invalid! Unknown word")
		i  = 1
	return guess_text


vocab = load_words("data/vocab.txt")
# print(vocab)
guess = prompt_user(4, vocab)
print(guess)
代码语言:python代码运行次数:0复制
def load_words(filename: str) -> tuple[str,...]:
	""" Loads all words from the file with the given name.

	Parameters:
		filename (str): The name of the file to load from. Each word must be on
						a separate line.

	Returns:
		tuple<str>: A tuple containing all the words in the file.
	"""
	with open(filename, 'r') as file:
		words = [line.strip() for line in file.readlines()]
	return tuple(words)

def prompt_user(number, content):
	i = 1
	while i <= number:
		guess_text = input("Enter guess "   str(number)   ":")
		# print(i) # 判断 while 循环次数
		if len(guess_text) < 6:
			print("Invalid! Guess must be of length 6")
		elif guess_text not in content:
			print("Invalid! Unknown word")
		else:
			break
		i  = 1
	return guess_text


vocab = load_words("data/vocab.txt")
# print(vocab)
guess = prompt_user(4, vocab)
print(guess)

5.5 process guess(guess: str, answer: str) -> str

Returns a modified representation of guess, in which each letter is replaced by:

  • A green square if that letter occurs in the same position in answer;
  • A yellow square if that letter occurs in a different position in answer; or
  • A black square if that letter does not occur in answer.

While answers must contain 6 unique letters, guesses may contain duplicate letters. If duplicate letters exist in the guess, only one can have a non-black square. If the letter doesn’t exist in the answer, all occurrences of said letter in guess are given black squares. If the letter does exist in answer, the non-black square is allocated as follows:

  1. If one of the occurrences is in the correct position, it receives a green square and all other occurrences receive a black square.
  2. Otherwise, if no occurrences are in the correct position, the first occurrence of the letter in guess receives a yellow square and all other occurrences receive a black square.

Precondition: len(guess) == 6 and len(answer) == 6

See a1 support.py for constants containing the required square characters.

意思是如果 guess 的字母跟 answer 的相同并且位置相同,那就显示成绿色方块,如果字母相同位置不同,显示成黄色方块,都不是显示黑色方块,如果 guess 里面有两个跟 answer 其中一个字母相同,只能有一个是黄色方块,另一个是黑色方块。

5.5.1 Example usage

在这里插入图片描述在这里插入图片描述

如果 guess 里面有两个字母跟 answer 里面其中一个相同,guess 中有一个正好是在相同位置, 另一个的字母被排除掉变成黑色方块。

代码语言:python代码运行次数:0复制
CORRECT = "


	

0 人点赞