Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Python Python is doesn't run the code

rgngkp

New Coder
Python:
import turtle
t = turtle.Turtle()
t.shape("square")
t.color("red")
t.backward(100)
t.goto(100,100)
t.dot(30)
t.circle(50)
1602587859528.jpg
 
Last edited by a moderator:
Hi there,

Welcome to Code Forum!

Using this thread https://codeforum.org/threads/how-do-i-ask-a-good-question.5/ please reformat your thread using the format provided in the thread (I have also provided the format down below). Please don't just share an image, it goes against adding value to the posts rule.

Thread Title: (Be as descriptive as possible while keeping it short as possible)

  1. Explain the problem. Try to keep it brief

  2. Observed: explain what is observed what you are seeing. (Always Provide Images)

  3. Desired: explain what you expect or desire.

  4. Steps to reproduce: What did you do to get to this problem.

  5. Good Information: The version of the software; and if you're using add-ons which ones?

  6. Steps tried: (try at least 3 things before posting)

Please review our Code of Conduct as well.
 
Looks like you have a turtle.py in the same folder as this python file (looks like it's on the desktop). Maybe rename the turtle.py that's on the desktop or move to a different location. I think the turtle you're looking to use is the one that comes with Python.
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom