Coding Exercise for Beginners in Python |Exercise 31 | Python for Beginners #lec116

preview_player
Показать описание
In this lecture we will draw 2 shapes (Turtle Star and Spirograph) using different colors using turtle graphics in python.

*********************************************

Connect & Contact Me:

*******************************************

More Playlists:

#coding #codingquestions #turtle #python #pythonforbeginners #jennyslectures
Рекомендации по теме
Комментарии
Автор

You were helped me a lot to clear all my semisters 🎉🎉
Thankyou mam😊

niranjanreddy
Автор

@17:20

import random
import turtle
from turtle import Turtle
tom=Turtle()
turtle.colormode(255)
tom.speed('fastest')


while True:
tom.circle(100)
tom.left(5)
r = random.randint(0, 255)
g = random.randint(0, 255)
b = random.randint(0, 255)
tom.pencolor((r, g, b))



if tom.heading() == 0:
break







tom.screen.mainloop()

vishnumuraly
Автор

Hello mam, can you plz tell me, are you going to teach DSA in python?By the way your teaching is awesome ❤

dreamchasers
Автор

Mam can u please send me the pdf of complete python notes

yashashwinir