Python Turtle graphics | part 2 | Python Tutorials for Beginners

  Рет қаралды 12,196

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Күн бұрын

Пікірлер: 39
@lokesh6828
@lokesh6828 Жыл бұрын
Thanks maam for the lectures. Comments are very less keeping the fact in consideration that the content is fabulous, maybe students did'nt reach till this lecture and are in middle of the series. Thanks for your time, efforts and crystal clear explanation free of cost. I have seen many videos of yours, but not to sound rude, it's not possible to comment down in every video to say thanks as it breaks the flow of study as well as many students watches the videos just before exam or few days before exam. Therefore I would like to convey the same in behalf of all the students. Personally, I haven't watched all the videos of this series, but many of the topics in which I was stuct or which was new to me. Those videos were super helpful. I would like to request you to explain the 2 thing : First, virtual environment like pandas in a detailed manner; basically the installation process Second; The shortcuts keys of pycharm and VScode. And last but not the least, you are cute, hehehe, the fact is fact, I can't deny that. Your cuteness is a reason of watching your content without getting bored, I mean "Mann laga hua rehta hai", aapka chehra andar se glow karna hai, chamak hai chehre mein (Itna hi bolunga😅 😅) We students actually value this kind of content
@-SakuraNoHana-
@-SakuraNoHana- Ай бұрын
ma'am can u please explain the time module in python? im really stuck on it and would like to know more in it
@Marvelkashmir
@Marvelkashmir Жыл бұрын
Full of knowledge as always ❤❤❤
@vishnumuraly18
@vishnumuraly18 11 ай бұрын
Assignment @ 33:00 from turtle import Turtle tom = Turtle() tom.hideturtle() # circle tom.color('yellow') tom.penup() tom.goto(-200, 100) tom.pendown() tom.circle(50) # square tom.penup() tom.goto(100, 100) tom.color('red') tom.pendown() tom.forward(100) tom.left(90) tom.forward(100) tom.left(90) tom.forward(100) tom.left(90) tom.forward(100) # Triangle tom.penup() tom.goto(-250, -200) tom.pendown() tom.left(90) tom.color('green') tom.forward(100) tom.left(120) tom.forward(100) tom.left(120) tom.forward(100) # pentagon tom.penup() tom.goto(100, -200) tom.color('blue') tom.pendown() tom.left(120) tom.forward(100) tom.left(60) tom.forward(100) tom.left(90) tom.forward(100) tom.right(120) tom.backward(100) tom.left(75) tom.backward(90) tom.screen.mainloop()
@-SakuraNoHana-
@-SakuraNoHana- Ай бұрын
13:47 We are making the line before changing the color of the line here. 26:03 import turtle turtle.color("red","green") turtle.begin_fill() turtle.circle(100) turtle.end_fill() turtle.pensize(10) turtle.penup() turtle.right(90) turtle.fd(100) turtle.pendown() turtle.fillcolor("orange") turtle.begin_fill() turtle.circle(50) turtle.end_fill() turtle.exitonclick()
@vishnumuraly18
@vishnumuraly18 11 ай бұрын
Assignment @26:03 tom.penup() tom.forward(100) tom.pendown() tom.pensize(10) tom.color('red','orange') tom.begin_fill() tom.circle(50) tom.end_fill()
@harinathcreationz739
@harinathcreationz739 6 ай бұрын
Assignment: import turtle as t #creating screen screen=t.Screen() screen.title("Assignment From Jenny lecturer") screen.bgcolor("black") #Creating turtle object for circle circle=t.Turtle("turtle") circle.speed(6) circle.color("yellow","blue") circle.pensize(5) circle.penup() circle.goto(-300,100) circle.pendown() circle.begin_fill() circle.circle(100) circle.end_fill() circle.hideturtle() #Creating turtle for Rectangle rectangle=t.Turtle("turtle") rectangle.speed(6) rectangle.color("red","green") rectangle.pensize(5) rectangle.penup() rectangle.goto(100,100) rectangle.pendown() rectangle.begin_fill() for _ in range(4): rectangle.forward(200) rectangle.left(90) rectangle.end_fill() rectangle.hideturtle() #Creating the turle for triangle triangle=t.Turtle("turtle") triangle.speed(6) triangle.color("green","red") triangle.pensize(5) triangle.penup() triangle.goto(-400,-300) triangle.pendown() triangle.begin_fill() for _ in range(3): triangle.forward(200) triangle.left(120) triangle.end_fill() triangle.hideturtle() #Creating the turtle for pentagon pentagon=t.Turtle("turtle") pentagon.speed(6) pentagon.color("blue","yellow") pentagon.pensize(5) pentagon.penup() pentagon.goto(150,-300) pentagon.pendown() pentagon.begin_fill() for _ in range(5): pentagon.forward(150) pentagon.left(72)#360/5=72 pentagon.end_fill() pentagon.hideturtle() t.done()
@minecode123
@minecode123 Жыл бұрын
Mam, you re beauty with mind... Salute to your initiative and giving wonderful lectures.
@aishwaryagandhi1878
@aishwaryagandhi1878 Жыл бұрын
Assignment @26:03 Answer: tom.color("red", "orange") tom.begin_fill() tom.circle(50) tom.end_fill() Understood the concept, Thank you ma'am 😊😊
@vickymdshorts77
@vickymdshorts77 Жыл бұрын
Always Beautiful ❤️☺️
@midnightphantom4787
@midnightphantom4787 4 ай бұрын
❤ you mam, you teach very well and are good looking too, I'm glad that i am studying from you😊
@OPRAJA663
@OPRAJA663 6 ай бұрын
Assignment:- from turtle import Turtle,Screen s1 = Screen() tom = Turtle() tom.speed(0) tom.shape("turtle") tom.hideturtle() tom.pencolor("yellow") tom.circle(50) tom.penup() tom.forward(200) tom.pendown() tom.pencolor("red") tom.lt(90) tom.forward(100) tom.rt(90) tom.forward(100) tom.rt(90) tom.forward(100) tom.rt(90) tom.forward(100) tom.showturtle() tom.penup() tom.lt(90) tom.forward(200) tom.pendown() tom.pencolor("pink") tom.lt(18) tom.forward(50) tom.lt(72) tom.forward(50) tom.lt(72) tom.forward(50) tom.lt(72) tom.forward(50) tom.lt(72) tom.forward(50) tom.penup() tom.goto(-50, -250) tom.pendown() tom.pencolor("orange") tom.setheading(0) tom.forward(100) tom.setheading(120) tom.forward(100) tom.setheading(240) tom.forward(100) s1.mainloop()
@vidhyashree4372
@vidhyashree4372 8 ай бұрын
t.color("yellow","orange") t.begin_fill() t.circle(100) t.end_fill()
@kingxavid
@kingxavid Жыл бұрын
Jennnnyyyyyy diiiiiii ❤
@babunadigadda3932
@babunadigadda3932 Жыл бұрын
mam answers: import turtle from turtle import Turtle,Screen t=Turtle() t.penup() t.goto(-150,100) print(t.pos()) t.pendown() def sqaure(): t.forward(90) t.left(90) def sqaure_1(): for i in range(4): sqaure() def triange(): for i in range(3): t.forward(100) t.left(120) def pentagon(): for i in range(5): t.forward(100) t.left(72) t.color('yellow','red') t.begin_fill() sqaure_1() t.end_fill() t.penup() t.goto(150,100) t.pendown() t.color('orange','green') t.begin_fill() t.circle(50) t.end_fill() t.penup() t.goto(-150,-100) t.pendown() t.color('pink','blue') t.begin_fill() triange() t.end_fill() t.penup() t.goto(150,-100) t.pendown() t.color('violet','brown') t.begin_fill() pentagon() t.end_fill() t.screen.mainloop()
@ramyakutikuppala4153
@ramyakutikuppala4153 6 ай бұрын
Mam can you please tell where I can find python documentation
@DivyaKarike
@DivyaKarike 4 ай бұрын
😊
@manishroy0001
@manishroy0001 Жыл бұрын
@shivakrishna_varma9658
@shivakrishna_varma9658 2 ай бұрын
import turtle # drawing a circle t1=turtle.Turtle() t1.shape("turtle") t1.pensize(4) t1.color("yellow") t1.penup() t1.goto(-250,0) t1.pendown() t1.circle(100) t1.hideturtle() # drawing a square t2=turtle.Turtle() t2.shape("turtle") t2.color("red") t2.penup() t2.forward(200) t2.pendown() t2.pensize(4) t2.forward(100) t2.left(90) t2.forward(100) t2.left(90) t2.forward(100) t2.left(90) t2.forward(100) t2.hideturtle() # drawing a triangle t3=turtle.Turtle() t3.shape("turtle") t3.penup() t3.goto(-300,-200) t3.pendown() t3.pensize(4) t3.color("green") t3.forward(100) t3.left(120) t3.forward(100) t3.left(120) t3.forward(100) t3.hideturtle() # drawing a pentagon t4=turtle.Turtle() t4.shape("turtle") t4.penup() t4.goto(200,-200) t4.pendown() t4.shape("turtle") t4.pensize(4) t4.color("skyblue") t4.forward(100) t4.left(72) t4.forward(100) t4.left(72) t4.forward(100) t4.left(72) t4.forward(100) t4.left(72) t4.forward(100) t4.hideturtle() turtle.done() # keep the turtle window open
@Iamsuman18
@Iamsuman18 Жыл бұрын
Crush ma'am ❤️🥰
@SAURABHYADAV-fc7bo
@SAURABHYADAV-fc7bo Жыл бұрын
❤❤
@leonelmessi7897
@leonelmessi7897 8 ай бұрын
Still Line is in black even though we added red color bcuz we're added the after moving forward (100)
@sathwikchinta8669
@sathwikchinta8669 10 ай бұрын
🤗
@SubhashRaut-n7l
@SubhashRaut-n7l Жыл бұрын
love from nepal mam
@archanavr8974
@archanavr8974 Жыл бұрын
Mam cpp video pls upload... Its my request.....
@johngkitvsr170
@johngkitvsr170 Жыл бұрын
Mam what are the topics are still remaining wait for your reply?
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
Pandas only
@johngkitvsr170
@johngkitvsr170 Жыл бұрын
Mam the last series of python is pandas or any other lecture comes or not? Waiting for your reply?
@-SakuraNoHana-
@-SakuraNoHana- Ай бұрын
@@JennyslecturesCSIT Ma'am i have been requesting this from a long time on many videos but can you please make a video on time module in python?
@aravindmusiq1371
@aravindmusiq1371 Жыл бұрын
Hiiii mam can u please teach sql and plsql series
@princereshav9964
@princereshav9964 Жыл бұрын
Mam is the Python series complete
@JennyslecturesCSIT
@JennyslecturesCSIT Жыл бұрын
Not yet
@KoratanaSai-lj5bi
@KoratanaSai-lj5bi Жыл бұрын
Mam I am completed my c program by your all 150 c lecturers . Mam Is it possible to do graphics with c ? If yes then why you not make videos on c mam. Please give me reply mam I am waiting for your reply and thank you very much mam.
@KoratanaSai-lj5bi
@KoratanaSai-lj5bi Жыл бұрын
Mam I want to join in member ship perks shall I ?
@KoratanaSai-lj5bi
@KoratanaSai-lj5bi Жыл бұрын
Please give me reply mam
@Prkshashank7676
@Prkshashank7676 Жыл бұрын
Mam you didn't answer my question
@ragaming9006
@ragaming9006 Жыл бұрын
U have boyfriend u tell no me application that place ...
Python Turtle Graphics Introduction | Python Tutorials for Beginners #lec111
28:29
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 48 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 117 МЛН
Accompanying my daughter to practice dance is so annoying #funny #cute#comedy
00:17
Funny daughter's daily life
Рет қаралды 29 МЛН
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 27 МЛН
Making a Game in Python with No Experience
5:57
Goodgis
Рет қаралды 1,7 МЛН
If __name__ == '__main__ ' in Python | Python Tutorials for Beginners #lec110
21:44
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 775 М.
pip & PyPI in python | Packages in Python | Python Tutorials for Beginners #lec108
19:56
Sets in Python | Python Tutorials for Beginners #lec41 Part1
16:00
Jenny's Lectures CS IT
Рет қаралды 86 М.
Python dataclasses will save you HOURS, also featuring attrs
8:50
5 JavaScript Concepts You HAVE TO KNOW
9:38
James Q Quick
Рет қаралды 1,4 МЛН
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 48 МЛН