我有这段代码,可以让用户猜测随机生成的数字。在继续if-else之前,我如何等待用户的其他输入?
while start!=tries:
await message.channel.send('You have 3 tries. Guess the bot number from 0-10')
//wait for another user message before continuing
if message.content == f'.guess answer {x}':
await message.channel.send('Correct')
break
else:
await message.channel.send('Wrong, guess again')
start += 1
我仍然是py的初学者,并且正在尝试使不和谐的机器人变得简单。 预先感谢。