146k views
1 vote
What is wrong in this python code import turtle bot = turtle.Turtle step = (50) turnAngle = (90) bot.Color("blue") bot.Begin_fill() bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.End_fill()

User Maschaub
by
5.0k points

1 Answer

1 vote

Answer:

The "Turtle" is a method and should be declared with parenthesis and every other method in the code (except the Turtle() ) should begin with lowercase letters like right, forward and begin_fill. The python file should not be saved as turtle.py to avoid import error.

Explanation:

The python turtle module is a graphical programming package created to introduce programming to children. It has several classes and methods to manipulate objects on the screen.

import turtle

bot = turtle.Turtle()

step =(50)

turnAngle =90

bot.color("blue")

bot.begin_fill()

bot.forward(step)

bot.right(turnAngle)

bot.forward(step)

bot.right(turnAngle)

bot.forward(step)

bot.right(turnAngle)

bot.forward(step)

bot.right(turnAngle)

bot.end_fill()

User Neill
by
5.0k points