#22.1 Python Tutorial for Beginners | Break vs Continue vs Pass in Python part 2

  Рет қаралды 480,536

Telusko

Telusko

Күн бұрын

Пікірлер: 225
@susmitshaw3617
@susmitshaw3617 4 жыл бұрын
East or West Navin Sir is the Best !!!
@nishuahuja1688
@nishuahuja1688 4 жыл бұрын
Yes
@Jose-qk3di
@Jose-qk3di 3 жыл бұрын
I think we are Xd
@ajinkyaanap9701
@ajinkyaanap9701 Жыл бұрын
Lawde north and south me kya Tera baap hai kya
@3lpme
@3lpme 3 ай бұрын
If its paid promotion let me know i need promoters
@studytime5807
@studytime5807 5 жыл бұрын
Best teacher in Computer Science i've ever seen.
@m.movsar
@m.movsar 4 жыл бұрын
Now it's clear. Thanks a lot! The best channel
@senthilnathanr609
@senthilnathanr609 4 жыл бұрын
Iam a normal high school computer science student who can understand the programming language from a programmer who taught from scratch very simply with needed contents......we love you sir........
@hillaryouma2753
@hillaryouma2753 4 жыл бұрын
Am really enjoying learning python.Thumps up Navin.This is Hillary all the way from Kenya!
@RahulGupta-ly2uu
@RahulGupta-ly2uu 6 жыл бұрын
examples for how and when to use this keywords are good.which are not given in the books. thank you sir
@raodyc
@raodyc 4 жыл бұрын
Pass = skips block of code( function, class etc) Continue= skips 1 step/iteration during loop Break= jumps out of the function/loop
@anandhisiva93
@anandhisiva93 4 жыл бұрын
pass is used as a placeholder for writing codes later within a function,class, etc.
@danielkamau8436
@danielkamau8436 4 жыл бұрын
Waoh, u just answered my stuck.....was literally challenged, can now easily use the 3 words comfortably
@trickytechtamilan9985
@trickytechtamilan9985 4 жыл бұрын
You are my inspiration sir really liked your video very much and I'm understanding every step clearly thank you very much sir
@mnk4utube
@mnk4utube 4 жыл бұрын
This Video, Sir read the mind of their students ahead and presented again. Cleared and avoided confusions, especially between continue and pass . :)
@fighterf-xkevo7212
@fighterf-xkevo7212 4 жыл бұрын
Really awesome and easier to understand Got the whole concept in my brain in 5 minutes which I couldn't in my actual class of 30 minutes.👍👍
@gcele-4133
@gcele-4133 4 жыл бұрын
we just loved it sir .no word to say,i am happy
@vijeysrini
@vijeysrini 3 жыл бұрын
Appreciate your dedication in answering to people's query and helping them out.
@sagarpaul07
@sagarpaul07 4 жыл бұрын
@Navin sir this 22.1 it really cleared my doubts.. Actually i cannot understand the previous video thank for clearing the concept
@pratikkumar4148
@pratikkumar4148 3 жыл бұрын
You made our concept clear. You are better than all of online and offline courses available Thank you sir for making it free
@ASMR_Archives2
@ASMR_Archives2 5 жыл бұрын
for i in range(11): if i == 5: pass else: print("Hello",i) Pass is also used like this.
@drdevilgettorody5711
@drdevilgettorody5711 4 жыл бұрын
continue does the same thing too, not convinced with the pass part..
@raguldeelip5078
@raguldeelip5078 4 жыл бұрын
What is o/p!?
@techinnovation8922
@techinnovation8922 4 жыл бұрын
Hi Sir, thank you so much for your effort for making a tutorial .. I'm done watching Django and I learn a lot and now I'm starting python.
@amarpatil9577
@amarpatil9577 4 жыл бұрын
Well explained in different view
@chandandutta2707
@chandandutta2707 3 жыл бұрын
Pls make some lec videos on how to make gui panels in python. Your videos are awesome.
@ashishrautela9145
@ashishrautela9145 3 жыл бұрын
Sir your teaching skills is so fantastic and accurate but sir can you make a video on all program of phython please
@shaleensudhakar8383
@shaleensudhakar8383 4 жыл бұрын
Easy way to understand that continue will immediately pass the loop to next counter while pass still try to do perform next statement if available.
@slonbeskonechen8310
@slonbeskonechen8310 3 жыл бұрын
Simply and clearly! Thank you!
@J.S.W0822
@J.S.W0822 Жыл бұрын
Clarified my doubts thankyou so much sir☺️
@deva2007
@deva2007 Жыл бұрын
u just understood a student mindset u know where the student is getting confused and explained it again love u sir
@easydatascience2508
@easydatascience2508 Жыл бұрын
You can see mine too. The channel has both a Python crash course tutorial playlist, and a R beginning course playlist. All the source files can be found in the description of the video.
@TheMayank1000
@TheMayank1000 5 жыл бұрын
Hi Navin thanks for python series. Understood the concept of Continue and Break but still confuse with "Pass"
@hackerxxspacex6935
@hackerxxspacex6935 4 жыл бұрын
Dude basically pass is just to skip a block, like you want to create a function but you don't know what to do with right now, so you just declare it, and leave it, now when you will execute the program it might give you some sort of error ( depending on what you have done) , so what the pass does is, it basically tells python to overlook that error... As you would be doing something about it in the future or you might remove it but for the time being just pass ( pun intended lol)
@kirubhaharkannan5461
@kirubhaharkannan5461 3 жыл бұрын
Diff b/w Continue and Pass: Continue skip the loop , will not executes the below statements and goes to top of loop, where pass executes the remaining logic. Example below. Continue : for i in range(11): if (i%2==0): continue print( i , " is odd") ---------------------------------------- 1 is odd 3 is odd 5 is odd 7 is odd 9 is odd Pass : for i in range(11): if (i%2==0): pass print( i , " is an number") --------------------------------------------- 0 is an number 1 is an number 2 is an number 3 is an number 4 is an number 5 is an number 6 is an number 7 is an number 8 is an number 9 is an number 10 is an number
@PrasanNavi
@PrasanNavi Жыл бұрын
You content is just too too good. Hats off to your for such great work.
@muskansharma7839
@muskansharma7839 4 жыл бұрын
Sir, you make us fall in love with python
@isaiahtrywelljatula
@isaiahtrywelljatula 6 ай бұрын
Navin's turtorial are easy to follow, they are truly designed specifically for beginners. thanks for making easing my studies in programming
@pranjalshahi1791
@pranjalshahi1791 4 жыл бұрын
sir may you please tell us , from where we should practice questions so as to get our hands on python .
@khajakhaja3
@khajakhaja3 4 жыл бұрын
just GOOGLE Bro, u will find a lot
@devips5102
@devips5102 5 жыл бұрын
This is perfect and my confusion is cleared for pass statement. Thanks Naveen
@laylajameel1836
@laylajameel1836 4 жыл бұрын
Thank you for clearing the information, I was confused before
@bhuvaneshkumarsrivastava906
@bhuvaneshkumarsrivastava906 5 жыл бұрын
Hi Sir, great videos from scratch. I was wondering by when you will start with Machine Learning in Python and show us the use of famous python libraries like: pandas, numpy, sckit learn and nltk ?
@saifsiddiqui8017
@saifsiddiqui8017 3 жыл бұрын
Thanks for sharing your skills thanks a lot sir
@omkartaur3887
@omkartaur3887 5 жыл бұрын
Very good approach of teaching python. Can you please make series on android applications using python like from scratch to complete app ?
@vilasbs
@vilasbs 3 жыл бұрын
I am 14 years old I love python I dint know where to start I started in many websites then I saw some in KZbin then I saw your channel and I am loving it
@simrankaur-yu6rh
@simrankaur-yu6rh 4 жыл бұрын
Thnx Mr navin reddy sir u deserve more success in ur life may god bless you ☺️☺️👍✨
@ItsMe-sx9ck
@ItsMe-sx9ck 3 жыл бұрын
Thanks, now it's clear.
@abhilashk2534
@abhilashk2534 3 жыл бұрын
To satisfied any condition and execute the code we use continue And if you don't have anything to devlop but you would to mention any block for future use, you can use pass to keep empty block in the code
@harshwardhansingh617
@harshwardhansingh617 4 жыл бұрын
Best ever teacher!
@kkgbapi6583
@kkgbapi6583 4 жыл бұрын
Sir u r a best teacher .
@MajorVenkataKrishnaMadem
@MajorVenkataKrishnaMadem 2 жыл бұрын
Clear cut explanation ✌✌☺👏
@pratapkhandekar8322
@pratapkhandekar8322 5 жыл бұрын
Everything was clear before But thanks for making this video...😊😊😊😊
@leijit8648
@leijit8648 4 жыл бұрын
Fibonacci x = 1 y = 1 while x
@MasterCoder99
@MasterCoder99 3 жыл бұрын
Thanks for the excellent content!
@chessbd
@chessbd Жыл бұрын
geat clarification with ease! thanks again
@easydatascience2508
@easydatascience2508 Жыл бұрын
YOu can see mine too. Step by step Python crash course playlist covers most of the fundamentals, with downloadable source files. And R playlist in the channe to.
@nikhatfatima9203
@nikhatfatima9203 4 жыл бұрын
Sir you are so good .. keep continuing
@praveenthuyamani101
@praveenthuyamani101 5 жыл бұрын
Thank u Navin now i got cleared from pass and continue...
@RitikPatel-vs9ik
@RitikPatel-vs9ik 4 жыл бұрын
sir apke video abhibhi hamare liye vardan k barabar hai thank you so so much sir .
@kibreabhaileselassie5136
@kibreabhaileselassie5136 6 жыл бұрын
When you will start with "Machine Learning"?pls
@jethalalgada3908
@jethalalgada3908 5 жыл бұрын
That's extremely advanced i guess
@krishnagarg3443
@krishnagarg3443 5 жыл бұрын
Nice explanation 😄😊
@sunilsuth
@sunilsuth 5 жыл бұрын
example of continue with increment operator
@swethabalakrishna9596
@swethabalakrishna9596 4 жыл бұрын
Thank you so much for the video , Its quiet informative , But when tried practice a lot of programs . there are few error , could you please help
@VijayKumar-ng2li
@VijayKumar-ng2li 5 жыл бұрын
Plz make video about nesting while or for loop
@606_anuhyakanikicherla5
@606_anuhyakanikicherla5 3 жыл бұрын
Yaa I want another video on pass 🙏
@arshamcfr3236
@arshamcfr3236 2 жыл бұрын
thank you so much it really helped me to understand the "Pass"❤
@flamboyantperson5936
@flamboyantperson5936 6 жыл бұрын
Good one. We understood in this video. Thanks.
@chinmaydas4053
@chinmaydas4053 6 жыл бұрын
Good topics... 🙏..
@prakashsubramanian499
@prakashsubramanian499 6 жыл бұрын
This video is more clear ! Thanks :)
@muvvadinesh
@muvvadinesh 3 жыл бұрын
reddy garu super clarification
@Shubham-fk4is
@Shubham-fk4is 5 жыл бұрын
Yes sir, it helps a lot thank you sir
@Neurosociologist
@Neurosociologist 4 жыл бұрын
Helpful. Thank you!
@zakiasmaa6834
@zakiasmaa6834 2 ай бұрын
Best teacher i've ever seen.
@Harsha.108
@Harsha.108 Жыл бұрын
SIR🙏🙏🙏🙏 for i in range(1,21): if i%2==0: pass else: print(i) AND for i in range(1,21): if i%2==0: continue else: print(i) ARE SAME...................
@AamirKhan-id4uu
@AamirKhan-id4uu 3 жыл бұрын
Hello sir, May I know where are the assignement questions? For practicing?
@existingstars3665
@existingstars3665 4 жыл бұрын
Please teach about graphics and animation course also sir
@girumg9885
@girumg9885 Жыл бұрын
This one is simple and clear!😎
@shashikumarbugide4816
@shashikumarbugide4816 2 жыл бұрын
Hi Naveen, I hope you are doing well. I am very glad to say that, the videos are fabulous and helpful to those who are aspiring to learn python. I have a query ,that "continue" keyword giving error during while loop. The code is: x=1 while x
@saikumarreddy2288
@saikumarreddy2288 Жыл бұрын
yeah you have to use x += 1 on above continue because increment is important when we use continue in while loop,for break no need to use increment
@protectinggaming
@protectinggaming 7 ай бұрын
Try this code: x = 1 while x
@gulimikeerthi9137
@gulimikeerthi9137 3 жыл бұрын
Thank u sir🤗
@vk-xo7iz
@vk-xo7iz Жыл бұрын
Thank you so much for the video
@rajeevsinghrajput6752
@rajeevsinghrajput6752 6 жыл бұрын
thanks sir sir, please talk about space problems (that means how much take space according to programme).
@sainathreddygangireddy6554
@sainathreddygangireddy6554 5 жыл бұрын
Its called indentation... Usually we can 4 spaces in real time..
@deeshantgupta3629
@deeshantgupta3629 3 жыл бұрын
Thank u sir Ans2 C = ['O', 'P', 'Q', 'R'] D = ['A', 'B', 'C', 'D'] for i in range(4): C[i] = D[i] for j in C: print(j, end='') print() Ans 1 for i in range(4): for j in range(i+1, 5): print(j, end='') print()
@maheshwarareddy8629
@maheshwarareddy8629 4 жыл бұрын
thank u sir bt still i want some clarity on these keyword.....basically my question is if these keyword was used in inner loops then what will happen......?
@francisabuto7242
@francisabuto7242 2 ай бұрын
hello Navin, thanks for this fun course. Am having a problem in launching my pycharm app. it doesn't split into two as the one you are using in your illustrantions.
@guyshello-q5s
@guyshello-q5s 10 ай бұрын
very great video
@mayanegi8329
@mayanegi8329 Жыл бұрын
Thanks TELUSKO for this.......
@sohambindu7934
@sohambindu7934 4 жыл бұрын
Can pls show more example on this particular Vedio......am facing some problem regarding how to apply this.. pls
@satyaprakashsahoo7772
@satyaprakashsahoo7772 5 жыл бұрын
Sir plz make just a video on python project.... Where we could learn multi concepts... Plz plz
@roshanichincholkar4884
@roshanichincholkar4884 5 жыл бұрын
hey please make video for continue and break using while loop
@HeWhoShalNotBeNamed_
@HeWhoShalNotBeNamed_ 5 жыл бұрын
So basically, continue skips the present iteration and moves on to next iteration , break breaks the program and won't execute any further of it and pass will basically skip that block of code in which it has been implemented.
@placeholder5982
@placeholder5982 5 жыл бұрын
Continue ignores all the statements which follow the continue statement and are inside the loop and jumps to next iteration , while pass doesn't directly jump to the next iteration, it jumps to the statement which immediately follows the pass statement and is inside the loop.
@priyanshugupta7591
@priyanshugupta7591 4 жыл бұрын
it was more than enough to solve my doubt : )
@prashanthimekala3018
@prashanthimekala3018 7 ай бұрын
Thanq so much sir.... seriously am the one who is in that confusion
@Karthik-kt24
@Karthik-kt24 4 жыл бұрын
thank you very much
@learn_with_esb
@learn_with_esb 5 жыл бұрын
hi sir in c language we have format of for loop as For(initiation,condition,increment/decrement) can we use same in the python
@vk-xo7iz
@vk-xo7iz Жыл бұрын
Thanks!
@uttejgunda4863
@uttejgunda4863 3 жыл бұрын
Thank you sir, i am clear with the difference between break & continue... But when you are explaining the pass: you took an example of defining a function and you explained... But defining a function and what it does and all, you did not tell till this point of tutorial... so i am confused about the functions, what it does or where to define/use the function. Pls let me know Thank you
@navidulislam2648
@navidulislam2648 4 жыл бұрын
You are Too good sir
@abhishekjadhav9289
@abhishekjadhav9289 3 ай бұрын
Nice video. However, I still do not understand why we will keep a function empty ? We are unnecessary lines in our code when we don't know what we will do with it.
@s.sidharthsankar198
@s.sidharthsankar198 2 жыл бұрын
to print first 50 fibonacci number : num = int (input("enter the range:")) num1 = 0 num2 = 1 print(num1) print(num2) for i in range (num): num3 = num1 + num2 num1 = num2 num2 = num3 print (num3)
@msdnsditlabs5328
@msdnsditlabs5328 3 жыл бұрын
Great!
@abdulmateen7486
@abdulmateen7486 8 ай бұрын
good video sir. I was confused at previous video assignment, "How to find Primer Numbers? After hard struggle I was able to understand the code written by someone in comments. I could not make it myself. I am worried, why I could not make the code. And it is happening in many assignments which you are giving. Please help me, how can I overcome this issue and be able to think, create and write a code for myself?
@bobwillispadesolutioncentr8097
@bobwillispadesolutioncentr8097 7 ай бұрын
may u repeat the introduction of pycham and how to operate on it
@Codemowaa
@Codemowaa 6 ай бұрын
Anna burra paadu explaination isthunaaru .... ❤❤❤
@namansingh8777
@namansingh8777 4 жыл бұрын
Can we also do high level projects from python
@surampudiswetha6099
@surampudiswetha6099 2 жыл бұрын
I would need another video to understand the difference between continue and pass.
@soulvocals3474
@soulvocals3474 4 жыл бұрын
Thanks alot..
@AstronautNawaz
@AstronautNawaz 4 жыл бұрын
You are the best.
@bijinmabraham3887
@bijinmabraham3887 4 жыл бұрын
Hi, So this pass and continue are behaving as same inside loop .right???
@ramkrishna1086
@ramkrishna1086 4 жыл бұрын
I think yeah ..
@Rajadahana
@Rajadahana 2 жыл бұрын
I have prepared 3 sets of codes to understand break, continue and pass. Copy the whole thing paste, run and enjoy!!! # This one is to understand - Break for i in range(5): if i ==3: print("From here it goes out of the loop") break print("Hello", i) print("Did you understand how 'break' works?") # This one is to understand - Continue print(' ') for i in range(5): if i ==3: print("From here it goes back to the beginning of the loop") continue print("Hello", i) print("Did you understand how 'continue' works?") # This one is to understand - Pass print(' ') for i in range(5): if i ==3: print("This is the missing 3") pass else: print("Hello", i) print("Did you understand how 'pass' works?")
@reddie708
@reddie708 2 жыл бұрын
Please make an a video about python road map day by day
#23 Python Tutorial for Beginners | Printing Patterns in Python
7:56
兔子姐姐最终逃走了吗?#小丑#兔子警官#家庭
00:58
小蚂蚁和小宇宙
Рет қаралды 9 МЛН
How I Turned a Lolipop Into A New One 🤯🍭
00:19
Wian
Рет қаралды 12 МЛН
Who’s the Real Dad Doll Squid? Can You Guess in 60 Seconds? | Roblox 3D
00:34
#63 Python Tutorial for Beginners | Exception Handling
15:59
Telusko
Рет қаралды 523 М.
Learn Python OOP in under 20 Minutes
18:32
Indently
Рет қаралды 73 М.
While loops in Python are easy ♾️
6:58
Bro Code
Рет қаралды 389 М.
Python for Beginners - Learn Python in 1 Hour
1:00:06
Programming with Mosh
Рет қаралды 19 МЛН
Python - break vs continue vs pass
5:34
PyMoondra
Рет қаралды 58 М.
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 524 М.
Let's code a beginner's Python BANK PROGRAM 💰
15:01
Bro Code
Рет қаралды 220 М.
Learn Java in 14 Minutes (seriously)
14:00
Alex Lee
Рет қаралды 4,8 МЛН
Nested while Loop in Python
12:49
Neso Academy
Рет қаралды 15 М.
兔子姐姐最终逃走了吗?#小丑#兔子警官#家庭
00:58
小蚂蚁和小宇宙
Рет қаралды 9 МЛН