言語
python
バージョン情報
Python3.9.4
使っているソフト
vscode
参考サイト
https://qiita.com/1ntegrale9/items/9d570ef8175cf178468f
#コードはこんな感じ↓
import discord
TOKEN = 'token'
client = discord.Client()
@client.event
async def on_ready():
print('ログインしました')
@client.event
async def on_message(message):
if message.author.bot:
return
x = input("x = ") y = input("y = ") x = int(x) y = int(y) if message.content == '/tasizann': await message.channel.send("x + y = {}".format(x+y))
client.run("token")
#したいこと
順番にdiscordのチャット欄で数を指定したいです。
例
まずx = ? ってbotが言ってそこで、自分が数を入力したら、数を指定して、
yも同様
そしたらx*yで計算をして答えを入力するって感じにしたい
#discord内で/keisannと打つとvscodeのほうに
#エラー↓
ログインしました
x = 23
y = 24
と出て、discold内でx + y = 47とでる。
このx = 23 y = 24をdiscord内で出したい
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。