Python Discord Cara Mendapatkan Variabel Pengguna

@client.event
async def on_message(message):
   if message.content in v_list:#v_list being the user variable list created on "python discord how to store user variables"
      await message.channel.send('You have {} coins'.format(coins))#in this example, coins would be in v_list
Graceful Gannet