Python Turtle graphics | part 2 | Python Tutorials for Beginners

Поделиться
HTML-код
  • Опубликовано: 29 дек 2024

Комментарии • 39

  • @lokesh6828
    @lokesh6828 Год назад +4

    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 Год назад +5

    Full of knowledge as always ❤❤❤

  • @vishnumuraly18
    @vishnumuraly18 Год назад +3

    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()

  • @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 😊😊

  • @vishnumuraly18
    @vishnumuraly18 Год назад

    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()

  • @midnightphantom4787
    @midnightphantom4787 5 месяцев назад

    ❤ you mam, you teach very well and are good looking too, I'm glad that i am studying from you😊

  • @harinathcreationz739
    @harinathcreationz739 6 месяцев назад +1

    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()

  • @vickymdshorts77
    @vickymdshorts77 Год назад +2

    Always Beautiful ❤️☺️

  • @DivyaKarike
    @DivyaKarike 5 месяцев назад +1

    😊

  • @kingxavid
    @kingxavid Год назад +1

    Jennnnyyyyyy diiiiiii ❤

  • @ramyakutikuppala4153
    @ramyakutikuppala4153 6 месяцев назад +1

    Mam can you please tell where I can find python documentation

  • @vidhyashree4372
    @vidhyashree4372 9 месяцев назад

    t.color("yellow","orange")
    t.begin_fill()
    t.circle(100)
    t.end_fill()

  • @manishroy0001
    @manishroy0001 Год назад +1

  • @SAURABHYADAV-fc7bo
    @SAURABHYADAV-fc7bo Год назад

    ❤❤

  • @boys9622
    @boys9622 Год назад

    When did you start Djanago and tk

  • @Iamsuman18
    @Iamsuman18 Год назад +1

    Crush ma'am ❤️🥰

  • @sathwikchinta8669
    @sathwikchinta8669 10 месяцев назад

    🤗

  • @OPRAJA663
    @OPRAJA663 7 месяцев назад +1

    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()

  • @johngkitvsr170
    @johngkitvsr170 Год назад +2

    Mam what are the topics are still remaining wait for your reply?

    • @JennyslecturesCSIT
      @JennyslecturesCSIT  Год назад +1

      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?

  • @leonelmessi7897
    @leonelmessi7897 9 месяцев назад

    Still Line is in black even though we added red color bcuz we're added the after moving forward (100)

  • @babunadigadda3932
    @babunadigadda3932 Год назад +2

    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()

  • @boys9622
    @boys9622 Год назад +1

    While I'm installing turtle showw error message pip install turtle

  • @shivakrishna_varma9658
    @shivakrishna_varma9658 3 месяца назад

    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

  • @SubhashRaut-n7l
    @SubhashRaut-n7l Год назад

    love from nepal mam

  • @aravindmusiq1371
    @aravindmusiq1371 Год назад

    Hiiii mam can u please teach sql and plsql series

  • @archanavr8974
    @archanavr8974 Год назад

    Mam cpp video pls upload... Its my request.....

  • @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.

  • @princereshav9964
    @princereshav9964 Год назад +2

    Mam is the Python series complete

  • @Prkshashank7676
    @Prkshashank7676 Год назад

    Mam you didn't answer my question

  • @ragaming9006
    @ragaming9006 Год назад +1

    U have boyfriend u tell no me application that place ...