import discord
from discord.ext import commands
import random
Bot = commands.Bot(command_prefix='!m ')
@Bot.event
async def on_ready():
print("Bot çalışıyor.")
@Bot.command()
async def musty(msg):
await msg.send('Merhaba')
@Bot.command()
async def zarat(msg):
await msg.send(zar)
zar = random.randint(1,6)
Bot.run('Token')