How do I make the console be shown on project pages ‘uploaded’ to my page. There are questions that will be asked on the Replt page and I need user input. I am also not sure if this belongs in Code Help or Replt Help so I’m putting in Code help because I think it is code related.
Greetings, @MasterLink1! It’s a pleasure to see you return after your brief five-month hiatus from posting. I have a slight doubt regarding your question. You seem to be utilizing the Turtle library in Python for drawing, but I’m under the impression that running a Repl directly from the cover page may not be sufficient to generate the window required to display your drawing.
It’s possible that he might be referring to pinning a Repl to his page, and if that’s the case, I believe that would indeed solve his query regarding having a “console” on the front page.
As you can see from my code I listed the input before the graphics window.
import turtle as trtl
import math
# colour libray
##set up
print("LETS BAKE A CAKE")
print("Lets make the base be white cake :)")
# 1st white layer
painter = trtl.Turtle()
painter.pensize(5)
painter.forward(200)
I also had this problem and asked support(remember when that existed) they replied with changing the v=1 to lite=1 in the URL(that box at the top) worked for me