Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Date: Saturday 30th September 2023

Code: Colorful Star with turtle graphics!


Time: 10:am to 1:pm

PHYTON source code for (Star)


Hey coder please make use of indentation (a coding line use for the arrangement of code in python script.)

1. from turtle import*


2. shape(“turtle”)
3. col=[“red”,”blue”,”yellow”,”green”,”purple”] Color to use
4. for i in range(5): To repeat following process five times
5. color(col[i]) To change color of line
6. forward(200) To advance 200 straight ahead
7. left(144)
To turn 144 degrees to left
8.
9. done()
Result Display of the above correct ……. If Absolutely correct

You might also like