49869/draw-a-square-using-the-turtle-module-python
Hey @Baily, use something like this:
import turtle sq = turtle.Turtle() for i in range(4): sq.forward(50) sq.right(90) turtle.done()
Hey @Jinu, try this: import turtle polygon = ...READ MORE
Hey @Nagya, so you added the following ...READ MORE
Try this: import turtle turtle = turtle.Pen() turtle.left(90) for x in ...READ MORE
A couple hours after posting this question ...READ MORE
if you google it you can find. ...READ MORE
Syntax : list. count(value) Code: colors = ['red', 'green', ...READ MORE
can you give an example using a ...READ MORE
You can simply the built-in function in ...READ MORE
Hey @Jinu, Try something like this: import turtle star = ...READ MORE
You don't need to change your existing ...READ MORE
OR
Already have an account? Sign in.