Monday, December 16, 2019

A python program to draw square using Turtle Programming

Write a python program to draw square using Turtle Programming

Answer:

import turtle 
skk = turtle.Turtle()
 
for i in range(4):
    skk.forward(50)
    skk.right(90)
     
turtle.done() 

No comments:

Post a Comment

Practice questions asked in bank exam

 Here are practice questions for bank exams, covering various topics, along with answers: