我正在研究一个不和谐的命令,它将整个文本文件逐行写入聊天中,我尝试制作它,但不知何故它不能正常工作。
file = open('story.txt', 'r')
@client.command(alisases = ['readfile'])
async def story(ctx):
for x in file:
await ctx.send(file)
它运行,但只写这些行:
<_io.TextIOWrapper name='story.txt' 模式='r' 编码='cp1250'>
冉冉说
相关分类