deezguyznutz
@deezguyznutz
0
MY SCHOOL PROJECT
This Repl is for my school project and it requires the turtle draw simultaneously with the console. But when i shared it with my friends they can only see the turtle drawing and not the console.
Any suggestions how I can fix this problem? I would like the turtle and the console to run side by side.12
2
0
Is there any way to increase the font size on a python console/terminal?
aimiaf Console/Terminal does not support font changes. It is only possible in the code editor. however, you could use an ASCII library to have bigger text in your terminal:
import sys
from colorama import init
init(strip=not sys.stdout.isatty()) # strip colors if stdout is redirected (sometimes replit could bug out :/)
from termcolor import cprint
from pyfiglet import figlet_format
cprint(figlet_format('missile!', font='starwars'),
'yellow', 'on_red', attrs=['bold'])
In your terminal
pip inst1 year ago
Im trying to make a word guesser game where I want people to guess the word by looking at the image. But I want the image to display on the console/te
Im trying to make a word guesser game where I want the players to guess the spelling of the word by looking at the image. But i dont know how to add a
sn236 You should mention the language but if it's in html
If it's in a folder -
If this answers your question pls tick my answer1 year ago