49871/how-do-i-create-a-star-using-the-turtle-module-of-python
Hey @Jinu,
Try something like this:
import turtle star = turtle.Turtle() for i in range(50): star.forward(50) star.right(144) turtle.done()
Hey @Jinu, try this: import turtle polygon = ...READ MORE
A couple hours after posting this question ...READ MORE
Hi, good question. If you are considering ...READ MORE
lets say we have a list mylist = ...READ MORE
You can also use the random library's ...READ MORE
Syntax : list. count(value) Code: colors = ['red', 'green', ...READ MORE
Enumerate() method adds a counter to an ...READ MORE
You can simply the built-in function in ...READ MORE
Hi, it is pretty simple, to be ...READ MORE
Hi, there is only that way and ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.