import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.event
async def on_ready():
print(f'Logged in as {bot.user.name}!')
@bot.command()
async def ping(ctx):
await ctx.message.delete()
await ctx.send('Pong!')
bot.run('your-token-goes-here')