python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How can I remove an bgimage in Python Turtle
I imported an bg image like so
screen = turtle.Screen()
#reference image
screen.bgpic("image.png")
then I made my graphic but I want to remove the bg image so only the bgcolor remains an...
Yorlie
Votes: 0
Answers: 1
How do I get the coordinates of a specific turtle in turtlesim (by python script)?
I am fairly new to this and I am trying to get the coordinates of a turtle to calculate Euclidean distances in python.
I have a python code which moves around 2 turtles. one named "turtle1" ...
randomUser1212421
Votes: 0
Answers: 2
How to make a frowning face on Python Turtle?
I need to make a frowning turtle face in python however I can't get the semi-circle arc like frown right, it's too big or not complete.
import turtle
t = turtle.Turtle(2)
t.speed(5)
t.forward(120)
t.l...
R S
Votes: 0
Answers: 2
errors while making game
anyone knows what these errors means?
import turtle
sc = turtle.Screen()
sc.setup(width=1000, height=1000)
sc.title("pong")
sc.bgcolor("black")
sc.tracer(0)
def paddle_a...
Heno
Votes: 0
Answers: 1