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
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()
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)
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.
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
ma'am can u please explain the time module in python? im really stuck on it and would like to know more in it
Full of knowledge as always ❤❤❤
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()
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()
Mam, you re beauty with mind... Salute to your initiative and giving wonderful lectures.
Assignment @26:03
Answer:
tom.color("red", "orange")
tom.begin_fill()
tom.circle(50)
tom.end_fill()
Understood the concept, Thank you ma'am 😊😊
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()
❤ you mam, you teach very well and are good looking too, I'm glad that i am studying from you😊
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()
Always Beautiful ❤️☺️
😊
Jennnnyyyyyy diiiiiii ❤
Mam can you please tell where I can find python documentation
t.color("yellow","orange")
t.begin_fill()
t.circle(100)
t.end_fill()
❤
❤❤
When did you start Djanago and tk
Crush ma'am ❤️🥰
🤗
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()
Mam what are the topics are still remaining wait for your reply?
Pandas only
Mam the last series of python is pandas or any other lecture comes or not? Waiting for your reply?
@@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?
Still Line is in black even though we added red color bcuz we're added the after moving forward (100)
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()
While I'm installing turtle showw error message pip install turtle
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
love from nepal mam
Hiiii mam can u please teach sql and plsql series
Mam cpp video pls upload... Its my request.....
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.
Mam I want to join in member ship perks shall I ?
Please give me reply mam
Mam is the Python series complete
Not yet
Mam you didn't answer my question
U have boyfriend u tell no me application that place ...