###実現したいこと
<prefix>len <文字列>
の用に入力すると、<文字列>のところの文字数を表示したいです。
###コード
py
1@bot.command() 2async def len(ctx, message1:int): 3 message = message1.message 4 await ctx.send(f"{len(message.clean_content)}字")
###エラー
raise BadArgument('Converting to "{}" failed for parameter "{}".'.format(name, param.name)) from exc discord.ext.commands.errors.BadArgument: Converting to "int" failed for parameter "message1". Ignoring exception in command len: Traceback (most recent call last):
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。