Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to make a star in python turtle

import turtle

t=turtle.Turtle()
for i in range(5):
  t.begin_fill()    
  t.forward(75)
  t.right(144)
t.end_fill()
Comment

python turtle star

#import turtle
import turtle
 
# set screen
Screen = turtle.Turtle()
 
# decide colors
cir= ['red','green','blue','yellow','purple']
 
# decide pensize
turtle.pensize(4)
 
# Draw star pattern
turtle.penup()
turtle.setpos(-90,30)
turtle.pendown()
for i in range(5):
    turtle.pencolor(cir[i])
    turtle.forward(200)
    turtle.right(144)
 
turtle.penup()
turtle.setpos(80,-140)
turtle.pendown()
 
# choose pen color
turtle.pencolor("Black")
turtle.done()
Comment

turtle star python

# import turtle library
import turtle             
polygon = turtle.Turtle()
my_num_sides = 6
my_side_length = 70
my_angle = 360.0 / my_num_sides
for i in range(my_num_sides):
   polygon.forward(my_side_length)           
   polygon.right(my_angle) 
turtle.done()
Comment

Python turtle star

#turtle.home()
turtle.left(90)
turtle.heading()
90.0

#Change angle measurement unit to grad (also known as gon, grade, or gradian and equals 1/100-th of the right angle.)
turtle.degrees(400.0)
turtle.heading()
#100.0
turtle.degrees(360)
turtle.heading()
#90.0
Comment

PREVIOUS NEXT
Code Example
Python :: django flush database 
Python :: how to get size of folder python 
Python :: check if a number is perfect cube in python 
Python :: get python script path 
Python :: for loop in df rows 
Python :: python sleep 5 seconds 
Python :: pandas how to get last index 
Python :: difference between w+ and r+ in python 
Python :: pyspark import f 
Python :: how to import login required in django 
Python :: how to put a text file into a list python 
Python :: plot roc curve for neural network keras 
Python :: numpy install with pip 
Python :: python youtube downloader mp3 
Python :: how to find element in selenium by class 
Python :: python bytes to dict 
Python :: split string form url last slash 
Python :: how to read tsv file python 
Python :: perfect number in python 
Python :: convert pdf to base64 python 
Python :: python how to get project location 
Python :: how to print image with cv2 
Python :: python barcode generator 
Python :: conda python 3.8 
Python :: random gen in python 
Python :: remove web linnks from string python 
Python :: how to permanently store data in python 
Python :: how to use rmse as loss function in keras 
Python :: print upto 1 decimal place python 
Python :: find all text in site python 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =