Answer the question
In order to leave comments, you need to log in
Need to write python code when you write a command, did it give out random text from a file?
In short, I don’t know how to do this, I just started learning
@bot.message_handler(commands=['ddd'])
async def test(ctx):
file = open(r"C:\Users\user\PycharmProjects\Testtelegramm\ttt\tt. txt", "rt")
content = file.read()
file.close()
length = 3
start = random.randint(0, (len(content)-length))
await ctx.send(content[start:(start +length)])
When I run it, I get an error:RuntimeWarning: coroutine 'test' was never awaited
task(*args, **kwargs)
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
please help
Answer the question
In order to leave comments, you need to log in
From conspicuous - the error may be in the path to the file. '\[какой-то символ]'
in python is an escaped sequence . Read
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question