For Loop in Python | Python Tutorials for Beginners

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

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

  • @rajraj-df8sk
    @rajraj-df8sk Год назад +28

    list1 = [2,3,5,-2,10]
    list2 = []
    for i in list1:
    square = i ** 2
    print(square)
    list2.append(square)
    print(list2)

    • @gowda-tw8bw
      @gowda-tw8bw 9 месяцев назад +7

      Why are you using that much of code just we cane write with in 2 line
      list = [ 1,2,3,4,5,6,7,8,9,]
      For squre in list:
      Print (squre**2)

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

      ​@@gowda-tw8bwbro we need to store the squares in the list
      Can use list2.append(i**2)

  • @venkateswarlugoud4564
    @venkateswarlugoud4564 Год назад +72

    Mam please provide notes also mam please ✍️✍️

  • @rockinghealthtips3395
    @rockinghealthtips3395 Год назад +12

    Your lecturing was too good, I got clear idea on loop

  • @sciencestudent.
    @sciencestudent. Год назад +17

    I am score out of in C Language in sem 1. I Am studying FyBsc Computer Science. I am score out of because of Mam your such beautiful teaching and efforts . Please provide mam C++ series 🙏

    • @banupartapsingh3470
      @banupartapsingh3470 9 месяцев назад +2

      your inglish is behry good

    • @Attitus
      @Attitus 7 месяцев назад +2

      ​@@banupartapsingh3470no bro you inglish is olso behri good my like inglish

    • @CurrentAffairsKeSasteNashe
      @CurrentAffairsKeSasteNashe 3 месяца назад +1

      @@banupartapsingh3470 🤪

  • @PradeepKumarPathak-o4v
    @PradeepKumarPathak-o4v 10 месяцев назад +3

    whatt a great explanation ...Thank you Jenny

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

    list1=[2,6,-5,-2]
    list2=[]
    for num in list1:
    sqrt=num**2
    list2.append(sqrt)
    print(list2)

  • @loveafinni
    @loveafinni Год назад +6

    Thank you for the detailed explanation

  • @rishabhshukla-m2j
    @rishabhshukla-m2j 5 месяцев назад +1

    you are looking good and teaching best ,
    loop prorblam solve seen this video thank you so much

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

    This lady is absolutely brilliant!

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

    Thanks a lot mam. Very well explained.

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

    I love your teaching ❤ so cute really great…

  • @rayuduvijay230
    @rayuduvijay230 4 месяца назад +1

    list1=[1,2,3,4]
    l2=[]
    for i in list1:
    square=i**2
    l2.append(square)
    print(l2)

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

    You just teach me like my english teacher of my school😊.

  • @rohit10mrs35
    @rohit10mrs35 7 месяцев назад

    I love your teaching ♥♥♥♥♥♥♥ very well explained

  • @HARISHyadavv-y5k
    @HARISHyadavv-y5k 8 месяцев назад

    Mam fully understand keep going
    We love you 💖💖💖🔥🔥🔥🔥

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

    Thank you Ma'm. I really learned a lot from you. Thank you very much.

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

    Jenny you are the future ❤

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

    list_1 = [1, 2, 3, -2, -1, 0, 1, 2, 3]
    square_numbers = [x**2 for x in list_1]
    print(square_numbers)

  • @lokeshvankudoth6175
    @lokeshvankudoth6175 11 месяцев назад

    numbers = [2,3,5,7,8,9]
    list=[]
    for i in numbers :
    list.append(i**2)
    print(list)
    for i in range(1,7):
    print(list[0:i])

  • @VISHNUMURALY-f3q
    @VISHNUMURALY-f3q 11 месяцев назад

    numbers=[1,3,4,6,7,-5,10]
    list=[]
    for i in numbers:
    square=i ** 2
    list.append(square)
    print(list)

  • @sruthimolkv3367
    @sruthimolkv3367 11 месяцев назад +1

    Thanku helpe fule the vidyo it 10 st pratical python

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

    thanks, very easy to understand GGs

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

    numbers = [2,4,5,-2,7]
    for i in numbers:
    print((i ** 2),end=',')

  • @JigmeNorbu-j1k
    @JigmeNorbu-j1k Год назад +1

    good explanation

  • @Tait1990
    @Tait1990 8 месяцев назад

    numbers = [2,3,5]
    for i in numbers:
    print(i **2)

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

    Thanks for this video mam❤❤

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

    Thank you for putting this video love you mam ❤😊

  • @uzumakinaruto9608
    @uzumakinaruto9608 2 месяца назад

    "You must be a boolean variable, because you have me feeling true."

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

    thanks you so much mam,please complete the python full course

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

    List1 = [1,2,3,4,5]
    Squared_numbers = []
    For x in list1:
    If x == 2 or x == 3:
    Squarrd_numbers.append(x**2)
    Else:
    Squared_numbers.append(x)
    Print(squared_numbers)

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

    nice, explanation, thank you

  • @g.kathirvel8959
    @g.kathirvel8959 Год назад

    👏👏 good teaching mam👍

  • @gowda-tw8bw
    @gowda-tw8bw 9 месяцев назад

    list = [ 1,2,3,4,5,6,7,8,9,]
    For squre in list:
    Print (squre**2)

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

    You know it's always useful when it's the Indian accent 🙃

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

    seriously thanks!

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

    Love ❤❤❤❤ from Sri lanka 🇱🇰

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

    Dekhu mai Tujhi ya dekhu kudrat ke nazare mushkilo mai hai yee Dil ❤ mera😅😍😘

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

    Thanks for you mam for I am pass in c programming in ptu exam

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

    Ma'am please provide full stack web development .

  • @0xDeerah
    @0xDeerah Год назад +1

    Jenny, the best tutor ❤

    • @AmanGupta-ti4zf
      @AmanGupta-ti4zf Год назад +6

      Best ka na pta lekin beautiful jarur hai 😁

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

    mam u doing best

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

    Thanks madam 🎉😊😊😊

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

    Thank you mam❤❤❤🎉🎉🎉

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

    Print("I Love You ")

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

    thanks from Sri lanka

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

    Thank you mam

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

    Thank you mam ☺️✨

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

    Jenny mam please explain pandas and numpy,matplot lib.

  • @NehaRajatGupta-ov7qw
    @NehaRajatGupta-ov7qw Год назад

    NIC SCIENTIST-B EXAM STRATEGY..

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

    Thank you mama for your class....i am a good student for you

  • @nagacharanchowdary7699
    @nagacharanchowdary7699 4 месяца назад

    Mam when I have to use range and sequence I mean the explain with example and what the situation

  • @JayAditya-ih5zy
    @JayAditya-ih5zy Год назад +1

    beauty with brain

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

    Is anyone coding python on Android when our beloved Jenny mam gives her assignments?

  • @AnitaYadav-cy9sr
    @AnitaYadav-cy9sr Год назад

    i was thinking that you are a NRI..😅 your teaching skill is so good.☺

  • @NiranjanBunny-qc1zp
    @NiranjanBunny-qc1zp 5 месяцев назад

    Hi mam,
    In every time we run code how to get new terminal automatically in vs code

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

    thanks mam i have zero douts about your class nice class :),
    but one dout who is ram,shyam

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

    We are lefting few concepts when we make note during video lecture
    ..also it take more time to complete the lecture

  • @Harsha.108
    @Harsha.108 5 месяцев назад

    i want to print in same line , I don't want next line (new line) by default,, how to do that?

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

    Please tell which software is used for screen recording in this video ?

  • @sciencestudent.
    @sciencestudent. Год назад +2

    Please mam, start C++ lectures 🥺

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

    Super explaing pls reply

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

    Mam make video on define function

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

    thanks mam

  • @sciencestudent.
    @sciencestudent. Год назад +1

    Please mam, start C++ lectures continue

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

    Mam i want to do a job in the IT sector for what should I learn coding please suggest me one (i am Bsc computer science)

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

    42 ✅

  • @AmarKohli-ny8bb
    @AmarKohli-ny8bb Год назад

    U really so pretty mam 😊

  • @Manimegalai-gw7lt
    @Manimegalai-gw7lt Год назад

    Mam why u didn't not use update method

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

    But I still confused that about while or for loop???

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

    How to put infinite loop in a code ??

  • @bhaveshsuthar1759
    @bhaveshsuthar1759 6 месяцев назад

    Mam but we don't have any sequence and we want to print 1 to 100 ,how can I do this???? You didn't tell about this.

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

      mam ko question kese pucha aau kiya me apni pe itni sundar mam ko question puch raha

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

    after learnig languages like java and cpp, python feels super wierd

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

    mam can you upload to class session notebook and topic of important interview questions and answers plsss.............

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

    Are you like a loop

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

    Please teach the next continuation videos in python mam

  • @yashbhai215eidjd
    @yashbhai215eidjd День назад

    I am sorry madam. Your explanation is very satisfying me.but your face like universal ❤so I can't concentrate the python.
    ..
    .....
    .......
    Again I fall you and I fail the python exam😢

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

    Mam but y do we use append in this

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

      I can't understand ,can anyone please tell me this how?

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

    😘😘😘😘

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

    can you teach python agorithems

  • @KOWSALYAM-f4l
    @KOWSALYAM-f4l Год назад

    Does anyone know using for loop can we take elements in sequence in reverse order in python .

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

    Thank You So Much

  • @ranatejs.r7896
    @ranatejs.r7896 Год назад +1

    Fact = 5
    For I in range (9) :
    Fact = (fact * i )
    Print(fact)
    Medam please tell me how to approach this problem

  • @Vulapatimahesh
    @Vulapatimahesh Месяц назад

    Please share your notes link

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

    Mam please provide notes also.

  • @shreyadenre8164
    @shreyadenre8164 7 месяцев назад

    Why mosquito sounds at the end? 😅

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

    Love u mam

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

    I want vedios in java

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

    For us , the output of this code is different ...i written same . But it gives the output is
    [4]
    [4,9]
    [4,9,25]
    [4,9,25,4].....so on ..
    What worng with me? Give me the solution please

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

      Look for indentation the last print() should be out of the for loop
      Numbers=[2,3,5,-2,10]
      Squares=[]
      for i in Numbers:
      square=i**2
      Squares.append(square)
      Print(Squares)

  • @rajurastogi-sr5ni
    @rajurastogi-sr5ni Год назад

    aap numpy library kb tk padhaogi 😅

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

    Madam you looking gorgeous 😍
    Don't be serious maam just a compliment

  • @redchanneloficial-l1b
    @redchanneloficial-l1b Год назад

    Jenny instead of explaining on the board use the pc, it is easier to understand

  • @G.Nderi_Merchant
    @G.Nderi_Merchant Год назад +1

    your very beautiful.good explanation

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

    bery bootiphul medem

  • @manishmk2908
    @manishmk2908 2 месяца назад

    so beautiful

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

    Ma'am Lecture Notes

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

    Mam plz send the note

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

    mam java please

  • @sandipkhelukar6908
    @sandipkhelukar6908 6 месяцев назад

    madam please make video in hindi language

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

    Hyy Mam my name is abhinav singh I want talk to voice calling ....plz mam reply this message because it's very important...plz plz mam

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

    Ur soo prity and also saying simple English where r u from