【发布时间】:2021-01-19 01:14:12
【问题描述】:
我正在尝试在一体式机器人的 discord.py 中创建一个随机国家/地区命令,但是我收到错误 TypeError: 'ExistingCountries' object is not callable。 Pycountry 被导入到机器人中
import discord
import random
import asyncio
import time
import youtube_dl
import functools
import itertools
import math
import sys
import traceback
import pycountry
import datetime
from functools import partial
from youtube_dl import YoutubeDL
from async_timeout import timeout
from discord.ext import tasks, commands
bot = commands.Bot(command_prefix = 'is!')
bot.remove_command('help')
@bot.command(pass_context=True)
async def randomcountry(ctx):
c = pycountry.countries()
await ctx.send(f'{random.choice(c)}')```
【问题讨论】:
标签: python python-3.x discord discord.py discord.py-rewrite