回答編集履歴
1
修正
answer
CHANGED
@@ -3,6 +3,9 @@
|
|
3
3
|
asyncio.sleepを使いましょう。
|
4
4
|
```python
|
5
5
|
import asyncio
|
6
|
+
|
7
|
+
# =====================================
|
8
|
+
|
6
9
|
async with message.channel.typing():
|
7
10
|
await asyncio.sleep(7)
|
8
11
|
await message.channel.send(random.choice(listA))
|