For Loop in Python | Python Tutorials for Beginners

  Рет қаралды 128,412

Jenny's Lectures CS IT

Jenny's Lectures CS IT

Жыл бұрын

In this lecture we will learn:
- loops in Python
- Need of Loops
- for loop in python
Best Python Tutorials for Beginners: • Python - Basic to Advance
*********************************************
Connect & Contact Me:
My Second Channel Link: bit.ly/354n7C7
Facebook: / jennys-lectures-csit-n...
Quora: www.quora.com/profile/Jayanti...
Instagram: / jayantikhatrilamba
Twitter: / khatrijenny
*******************************************
More Playlists:
Programming in C Tutorials: • Programming in C
C++ Tutorials for beginners: • Lec 1: How to Install ...
Placement Series: • Placements Series
Data Structures and Algorithms: https: • Data Structures and Al...
Design and Analysis of Algorithms(DAA): • Design and Analysis of...
Dynamic Programming: • Dynamic Programming
Operating Systems tutorials: // • Operating Systems
DBMS Tutorials: • DBMS (Database Managem...
#coding #pythonforbeginners #python #jennyslectures #pythonprogramming #loops

Пікірлер: 117
@rajraj-df8sk
@rajraj-df8sk Жыл бұрын
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 2 ай бұрын
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)
@rockinghealthtips3395
@rockinghealthtips3395 10 ай бұрын
Your lecturing was too good, I got clear idea on loop
@venkateswarlugoud4564
@venkateswarlugoud4564 Жыл бұрын
Mam please provide notes also mam please ✍️✍️
@loveafinni
@loveafinni 10 ай бұрын
Thank you for the detailed explanation
@rongalamanindra5279
@rongalamanindra5279 Жыл бұрын
thanks you so much mam,please complete the python full course
@harisinghgurjar9291
@harisinghgurjar9291 8 ай бұрын
You just teach me like my english teacher of my school😊.
@sciencestudent.
@sciencestudent. Жыл бұрын
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 2 ай бұрын
your inglish is behry good
@Attitus
@Attitus Ай бұрын
​@@banupartapsingh3470no bro you inglish is olso behri good my like inglish
@user-fd2kp1gb6m
@user-fd2kp1gb6m 4 ай бұрын
whatt a great explanation ...Thank you Jenny
@vikas9890
@vikas9890 8 ай бұрын
Thanks a lot mam. Very well explained.
@rajeshchandra100
@rajeshchandra100 6 ай бұрын
Thank you Ma'm. I really learned a lot from you. Thank you very much.
@tyronekasiba
@tyronekasiba Жыл бұрын
Jenny you are the future ❤
@yogaprakashyoga5268
@yogaprakashyoga5268 10 ай бұрын
I love your teaching ❤ so cute really great…
@mudiagaakpubi8983
@mudiagaakpubi8983 5 ай бұрын
thanks, very easy to understand GGs
@madhupenke7323
@madhupenke7323 Жыл бұрын
Jenny mam please explain pandas and numpy,matplot lib.
@user-uv4io6mx2d
@user-uv4io6mx2d 8 ай бұрын
good explanation
@Sansoha0001
@Sansoha0001 5 ай бұрын
nice, explanation, thank you
@g.kathirvel8959
@g.kathirvel8959 8 ай бұрын
👏👏 good teaching mam👍
@suchetabarat2489
@suchetabarat2489 9 ай бұрын
Thanks for this video mam❤❤
@IXQHARISH
@IXQHARISH Ай бұрын
Mam fully understand keep going We love you 💖💖💖🔥🔥🔥🔥
@akuengineerzone123
@akuengineerzone123 Жыл бұрын
Ma'am please provide full stack web development .
@rajabhaysingh
@rajabhaysingh Жыл бұрын
Thank you mam ☺️✨
@nimeshamadhubhashini1260
@nimeshamadhubhashini1260 Жыл бұрын
Love ❤❤❤❤ from Sri lanka 🇱🇰
@archanalakade2359
@archanalakade2359 Жыл бұрын
Mam make video on define function
@rongalamanindra5279
@rongalamanindra5279 Жыл бұрын
Thank you mam
@abhishekdas05
@abhishekdas05 8 ай бұрын
seriously thanks!
@chimmi75
@chimmi75 Жыл бұрын
This lady is absolutely brilliant!
@arpitrajput9292
@arpitrajput9292 Жыл бұрын
Thanks for you mam for I am pass in c programming in ptu exam
@johngkitvsr170
@johngkitvsr170 Жыл бұрын
Thank you for putting this video love you mam ❤😊
@venkateswarlugoud4564
@venkateswarlugoud4564 Жыл бұрын
Thank you mam❤❤❤🎉🎉🎉
@tiwarisarkar20
@tiwarisarkar20 Жыл бұрын
So asome topics ma'am thanks 🙏🙏
@tiwarisarkar20
@tiwarisarkar20 Жыл бұрын
Thanks ma'am
@simpalcode4971
@simpalcode4971 Жыл бұрын
Thanks madam 🎉😊😊😊
@cartoondhamaka5897
@cartoondhamaka5897 8 ай бұрын
mam u doing best
@Prajwalsuryaaa
@Prajwalsuryaaa 6 ай бұрын
Please tell which software is used for screen recording in this video ?
@rohit10mrs35
@rohit10mrs35 15 күн бұрын
I love your teaching ♥♥♥♥♥♥♥ very well explained
@user-oe8zg9mt1q
@user-oe8zg9mt1q Жыл бұрын
Please teach the next continuation videos in python mam
@ratnadhara9884
@ratnadhara9884 11 ай бұрын
list1=[2,6,-5,-2] list2=[] for num in list1: sqrt=num**2 list2.append(sqrt) print(list2)
@baggamsiddu3049
@baggamsiddu3049 6 ай бұрын
Good
@harshasudarshanasuraweera7968
@harshasudarshanasuraweera7968 5 ай бұрын
thanks from Sri lanka
@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)
@Yourcodingfriendsaruk
@Yourcodingfriendsaruk 5 ай бұрын
thanks mam
@karthikking4666
@karthikking4666 11 ай бұрын
Super explaing pls reply
@sciencestudent.
@sciencestudent. Жыл бұрын
Please mam, start C++ lectures continue
@Lucky_truth
@Lucky_truth 8 ай бұрын
thanks mam i have zero douts about your class nice class :), but one dout who is ram,shyam
@sruthimolkv3367
@sruthimolkv3367 4 ай бұрын
Thanku helpe fule the vidyo it 10 st pratical python
@randomguycommentingonthisy4195
@randomguycommentingonthisy4195 3 ай бұрын
How did u pass 9th with that type of English?
@sruthimolkv3367
@sruthimolkv3367 3 ай бұрын
​@@randomguycommentingonthisy4195😅😅
@NehaRajatGupta-ov7qw
@NehaRajatGupta-ov7qw Жыл бұрын
NIC SCIENTIST-B EXAM STRATEGY..
@Creamcheese65234
@Creamcheese65234 8 ай бұрын
You know it's always useful when it's the Indian accent 🙃
@0xDeerah
@0xDeerah Жыл бұрын
Jenny, the best tutor ❤
@AmanGupta-ti4zf
@AmanGupta-ti4zf 11 ай бұрын
Best ka na pta lekin beautiful jarur hai 😁
@Kddatashan
@Kddatashan Жыл бұрын
Dekhu mai Tujhi ya dekhu kudrat ke nazare mushkilo mai hai yee Dil ❤ mera😅😍😘
@krishnarajraj756
@krishnarajraj756 10 ай бұрын
But I still confused that about while or for loop???
@ZaminRashid
@ZaminRashid Жыл бұрын
We want cpp course to be completed please maam
@START_TODAY96
@START_TODAY96 Жыл бұрын
Thank you mama for your class....i am a good student for you
@sciencestudent.
@sciencestudent. Жыл бұрын
Please mam, start C++ lectures 🥺
@JayAditya-ih5zy
@JayAditya-ih5zy 11 ай бұрын
beauty with brain
@piyushsharma5906
@piyushsharma5906 11 ай бұрын
Mam please provide notes also.
@norajerin7223
@norajerin7223 Жыл бұрын
can you teach python agorithems
@gdarmateja5722
@gdarmateja5722 9 ай бұрын
mam can you upload to class session notebook and topic of important interview questions and answers plsss.............
@jaga4123
@jaga4123 7 ай бұрын
We are lefting few concepts when we make note during video lecture ..also it take more time to complete the lecture
@vyasnevil5431
@vyasnevil5431 11 ай бұрын
😘😘😘😘
@krishnarai6853
@krishnarai6853 10 ай бұрын
Are you like a loop
@Manimegalai-gw7lt
@Manimegalai-gw7lt 6 ай бұрын
Mam why u didn't not use update method
@AnitaYadav-cy9sr
@AnitaYadav-cy9sr 5 ай бұрын
i was thinking that you are a NRI..😅 your teaching skill is so good.☺
@JethiyaChampakGada
@JethiyaChampakGada 7 ай бұрын
after learnig languages like java and cpp, python feels super wierd
@user-li3hb6dh5p
@user-li3hb6dh5p Жыл бұрын
Does anyone know using for loop can we take elements in sequence in reverse order in python .
@RajuBhai-hx2hg
@RajuBhai-hx2hg 5 ай бұрын
Yos
@mr_affan15
@mr_affan15 Жыл бұрын
How to put infinite loop in a code ??
@girishasjeenakeri9538
@girishasjeenakeri9538 Жыл бұрын
While True:
@prudhvijeeja__9461
@prudhvijeeja__9461 3 ай бұрын
list_1 = [1, 2, 3, -2, -1, 0, 1, 2, 3] square_numbers = [x**2 for x in list_1] print(square_numbers)
@Tait1990
@Tait1990 Ай бұрын
numbers = [2,3,5] for i in numbers: print(i **2)
@glps369
@glps369 10 ай бұрын
Thank You So Much
@NatureOn4th
@NatureOn4th 8 ай бұрын
Print("I Love You ")
@user-ws8kv5zc4t
@user-ws8kv5zc4t 4 ай бұрын
numbers=[1,3,4,6,7,-5,10] list=[] for i in numbers: square=i ** 2 list.append(square) print(list)
@lokeshvankudoth6175
@lokeshvankudoth6175 4 ай бұрын
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])
@abidamanzoor6464
@abidamanzoor6464 7 ай бұрын
Love u mam
@sureshmanikala7257
@sureshmanikala7257 6 ай бұрын
I want vedios in java
@shreyadenre8164
@shreyadenre8164 7 күн бұрын
Why mosquito sounds at the end? 😅
@user-od7tm6rs9v
@user-od7tm6rs9v 9 ай бұрын
Mam but y do we use append in this
@user-od7tm6rs9v
@user-od7tm6rs9v 9 ай бұрын
I can't understand ,can anyone please tell me this how?
@AmarKohli-ny8bb
@AmarKohli-ny8bb 6 ай бұрын
U really so pretty mam 😊
@gowda-tw8bw
@gowda-tw8bw 2 ай бұрын
list = [ 1,2,3,4,5,6,7,8,9,] For squre in list: Print (squre**2)
@user-lo5is4cv2l
@user-lo5is4cv2l 2 ай бұрын
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)
@rajurastogi-sr5ni
@rajurastogi-sr5ni Жыл бұрын
aap numpy library kb tk padhaogi 😅
@jaga4123
@jaga4123 7 ай бұрын
Mam plz send the note
@Furious_footballs
@Furious_footballs 3 ай бұрын
mam java please
@ranatejs.r7896
@ranatejs.r7896 9 ай бұрын
Fact = 5 For I in range (9) : Fact = (fact * i ) Print(fact) Medam please tell me how to approach this problem
@memoriasdafoice
@memoriasdafoice Жыл бұрын
Jenny instead of explaining on the board use the pc, it is easier to understand
@ZaminRashid
@ZaminRashid Жыл бұрын
Kya ma'am cpp ka course aadha adhura chod k python padha rahay ho aap... Cpp mein apne humein darbadar krr diya . Kahan jayai hum
@Sandeepmadari
@Sandeepmadari Жыл бұрын
Madam you looking gorgeous 😍 Don't be serious maam just a compliment
@NMEDarshanKS
@NMEDarshanKS 10 ай бұрын
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 10 ай бұрын
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)
@G.Nderi_Merchant
@G.Nderi_Merchant 10 ай бұрын
your very beautiful.good explanation
@user-ne9rx3hi4c
@user-ne9rx3hi4c 4 ай бұрын
Hindi me chalega
@onkar5404
@onkar5404 9 ай бұрын
mam your stare is very scaryy
@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
@sandipkhelukar6908
@sandipkhelukar6908 Күн бұрын
madam please make video in hindi language
@sureshmanikala7257
@sureshmanikala7257 6 ай бұрын
Ur soo prity and also saying simple English where r u from
@travel_vlogs28
@travel_vlogs28 4 ай бұрын
mam please hindi m explain kr do
@user-ft2cn8tu2h
@user-ft2cn8tu2h Жыл бұрын
there are too many ads
@abid7082
@abid7082 Жыл бұрын
Are you Indian
@informativechannel2928
@informativechannel2928 Жыл бұрын
G bro
@user-kb6qn5zr7y
@user-kb6qn5zr7y Ай бұрын
Mam , improve your way of teaching 🤔🥱
@mohemmedarqum366
@mohemmedarqum366 4 ай бұрын
name= "jenny" def thank_you_message(teacher): message = f"Dear {teacher}, " message += "I want to express my heartfelt thanks for your excellent Python tutorials on KZbin. " message += "Your teaching style made it easy for me to understand loops and many other concepts. " message += "Thank you for your dedication and for being such a great teacher! " message += "Best regards, Mohamad Arqum" print(message) teacher_name = name thank_you_message(teacher_name)
@sucharithapatnana2946
@sucharithapatnana2946 Жыл бұрын
Thank you mam
@krishnarajraj756
@krishnarajraj756 10 ай бұрын
Are you like a loop
For else in Python | Python Tutorials for Beginners #lec43
14:39
Jenny's Lectures CS IT
Рет қаралды 46 М.
The Basics of while Loop in Python
8:17
Neso Academy
Рет қаралды 31 М.
Khóa ly biệt
01:00
Đào Nguyễn Ánh - Hữu Hưng
Рет қаралды 6 МЛН
Why You Should Always Help Others ❤️
00:40
Alan Chikin Chow
Рет қаралды 108 МЛН
Whyyyy? 😭 #shorts by Leisi Crazy
00:16
Leisi Crazy
Рет қаралды 19 МЛН
Python Conditional Statement inside a for Loop
4:57
homastudio
Рет қаралды 20 М.
Functions in Python | Introduction | Python for beginners #lec56
24:07
Jenny's Lectures CS IT
Рет қаралды 111 М.
What is For Loop in Python | Data on Repeat | Python Tutorials
18:43
#20 Python Tutorial for Beginners | While Loop in Python
12:43
Telusko
Рет қаралды 1,5 МЛН
P_32 List in Python and List Functions | Python Tutorials for Beginners
29:01
Jenny's Lectures CS IT
Рет қаралды 135 М.
Solve any Star Pattern program in Python
18:44
Simply Coding
Рет қаралды 848 М.
Khóa ly biệt
01:00
Đào Nguyễn Ánh - Hữu Hưng
Рет қаралды 6 МЛН