discord.py send message in the channel code example
Example 1: how to send a message in a specific channel discord.py
channel = client.get_channel(12324234183172)
await channel.send('hello')
Example 2: send message discord.py
await message.channel.send("Your message")