If I type in the command print in a python script nothing happens. In tutorials there is always the message or the value they want, but when I do there is no command line that opens.
Example:
import discord
from discord.ext import commands
client = commands.bot(command_prefix = "!bot")
@client.event
async def on_ready():
print("bot is ready")
client.run("censoredtoken")
I think there should be a cmd window with the message: bot is ready.