Computer Science, asked by yassminyasser1, 1 year ago

using python (turtle graphics)
draw a house and a tree and a sun
using for loops

guys please I need help because I am stuck in time and I need this project tomorrow.


Answers

Answered by suraj62111
1

it will definitely help u...

Attachments:
Answered by ʙʀᴀɪɴʟʏᴡɪᴛᴄh
5

\huge{\fbox{\fbox{\bigstar{\mathfrak{\red{Answer}}}}}}

Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966.

Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an import turtle, give it the command turtle.forward(15), and it moves (on-screen!) 15 pixels in the direction it is facing, drawing a line as it moves. Give it the command turtle.right(25), and it rotates in-place 25 degrees clockwise.

The turtle module is an extended reimplementation of the same-named module from the Python standard distribution up to version Python 2.5.

It tries to keep the merits of the old turtle module and to be (nearly) 100% compatible with it. This means in the first place to enable the learning programmer to use all the commands, classes and methods interactively when using the module from within IDLE run with the -n switch.

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it needs a version of Python installed with Tk support

Similar questions