Monday, December 16, 2019

A python program to draw star using Turtle Programming

Write a python program to draw star using Turtle Programming :


Answer:

import turtle 
 
star = turtle.Turtle()
 
for i in range(50):
    star.forward(50)
    star.right(144)
     
turtle.done()

No comments:

Post a Comment

Grocery business

 The grocery business involves the retail and distribution of food and household products. Here are some key aspects: Key Players: 1. *Super...