我正在使用远程目录创建Hangman游戏。 我被卡住了,因为程序打印随机字母而不是目录中的随机字。
首先:
directory = "http://www.mieliestronk.com/corncob_lowercase.txt"
response = requests.get(directory)
text = response.text
当我现在尝试print (text)
时,它会打印目录中列出的所有单词。
然而,当我到达部分时,我选择并打印随机单词:
SECRET_WORD = random.choice(text)
print (SECRET_WORD)
我的输出只是一个随机字母。
我做错了什么?
答案 0 :(得分:1)
试试这个:
directory = "http://www.mieliestronk.com/corncob_lowercase.txt"
response = requests.get(directory)
text = response.text.split()
SECRET_WORD = random.choice(text)
print(SECRET_WORD)