#22 Python Tutorial for Beginners | Break Continue Pass in Python

  Рет қаралды 995,955

Telusko

Telusko

Күн бұрын

Пікірлер: 1 100
@Arjunsiva
@Arjunsiva 4 жыл бұрын
My college life would be great if I had a professor like you in my college
@arjunchavan9669
@arjunchavan9669 4 жыл бұрын
Hey Arjun! Never met another Arjun
@anmol3457
@anmol3457 4 жыл бұрын
Arjun siva it really wouldn’t because we usually find another problem with the professor.
@akash6327
@akash6327 3 жыл бұрын
damn really :) i would not study at all or daily 1 hour would be enough to get a rank :)
@faridhaf8626
@faridhaf8626 2 жыл бұрын
Agreed
@fasin9424
@fasin9424 Жыл бұрын
@@arjunchavan9669 cap, Arjun's are everywhere
@AmitKhuranaSir
@AmitKhuranaSir 4 жыл бұрын
i am experienced programmer so watching on 2x speed but for your bbye i slow down the speed!!!!! your way of saying bbye is awesome
@jurrulokeshyadav842
@jurrulokeshyadav842 4 жыл бұрын
I will complete my python within 1 week by your teaching sir. I thank you very much sir for teaching this course.
@siddharthrajan616
@siddharthrajan616 3 жыл бұрын
yeah I am planning to complete it in a single night lol
@tudos9209
@tudos9209 3 жыл бұрын
@@siddharthrajan616 quite possible though
@shyamjaiswal3432
@shyamjaiswal3432 3 жыл бұрын
@@siddharthrajan616 😂😂🤣 exectly
@rajtiwari6645
@rajtiwari6645 4 жыл бұрын
av=6 x=int(input('how many candies do you want')) for i in range(0,x): if i
@flamboyantperson5936
@flamboyantperson5936 6 жыл бұрын
When you will start with "Machine Learning"? It's going to be awesome if you teach us.
@anindian4601
@anindian4601 3 жыл бұрын
Not only machine learning we want Artificial Intelligence TOO.
@ashwiniambhore3056
@ashwiniambhore3056 Жыл бұрын
+1
@divyanshusingh6105
@divyanshusingh6105 4 жыл бұрын
You are a really great man.... I learned from you and practise some programs and i did it... First time in my life i can create the logic..🙌🙌🙌
@tirthshah3350
@tirthshah3350 6 жыл бұрын
I had just started your python tutorial and it was the best. One request is that at last please also show how to make games and software in python.
@rraushan1000
@rraushan1000 4 жыл бұрын
I had literally searched whole KZbin in search of a video that could explain me loops but I didn't get one. Then, I found this channel and finally I understood loops and even make programs using while and for loops. Thank you Navin sir :)
@pradeepchandertiwari2883
@pradeepchandertiwari2883 4 ай бұрын
My vending machine is not working even with the same code
@akarshasudheer6626
@akarshasudheer6626 4 жыл бұрын
To check if a given number is prime or not: i=2 p = int(input("Enter a number:")) while i
@ankitrawat_data
@ankitrawat_data 10 ай бұрын
your code will fail on 0 and 1
@touristknud5434
@touristknud5434 4 жыл бұрын
Great course! The answer beneath looks correct to find out if a number is prime. x=int(input("is this number prime?")) for i in range (2,x): if x%i==0: print (x, " is not prime") break else : print (x, "is prime") break
@radmonk8843
@radmonk8843 4 жыл бұрын
a dude can u explain me the logic plz
@lokeshsharma4363
@lokeshsharma4363 4 ай бұрын
this will throw an error for values like 9
@DonaldOkonkwo-n5e
@DonaldOkonkwo-n5e Ай бұрын
No output would be visible if for a number like 2
@stmpcol
@stmpcol 4 жыл бұрын
Teaching is an art. You've got it man👍 very logical progression for beginners.
@Ihsan_almohsin
@Ihsan_almohsin 3 жыл бұрын
Break : to end the loop. It uses with if statement to put a condition so you can break the loop and exit. Continue : to skip the remaining code of the loop when a certain condition happen (like in if statement), but still looping. Pass: uses for impty blocks when you don't have a code to write.
@alejrandom6592
@alejrandom6592 3 жыл бұрын
thx!
@YourHotMan
@YourHotMan 2 жыл бұрын
can someone explain me...why he use * while i
@goutambanerjee185
@goutambanerjee185 2 жыл бұрын
@@YourHotMan i means no. of candies & x is the Limit of candies no. i.e. total candies want
@uday2159
@uday2159 Жыл бұрын
@@YourHotMan it's not * bro it is colon :
@publicenemy1415
@publicenemy1415 Жыл бұрын
Here it looked like continue & pass are the same. Whats the difference? Used continue to skip number div. by 3 & used pass to skip odd numbers.
@omkarpathak4759
@omkarpathak4759 4 жыл бұрын
Sir the way of your teaching has just made learning python so easy and I'm blessed to learn from you sir. Hope i could meet you some day.
@ahilanbhattacharya3402
@ahilanbhattacharya3402 4 жыл бұрын
sir you are a very great teacher i am 13 years old and i am learning python and as well i could understand each and every thing you say..you're teaching style is really great..
@DevendraSingh-xt2wn
@DevendraSingh-xt2wn 6 жыл бұрын
#fibonacci list1 = [0, 1] for i in range(48): list1.append(list1[-1]+list1[-2]) print('bye') print(list1)
@rajjoshi4302
@rajjoshi4302 5 жыл бұрын
Smart Logic
@anon5788
@anon5788 5 жыл бұрын
This is very nice approach. learnt a new thing
@chandhrusrinivasan9595
@chandhrusrinivasan9595 5 жыл бұрын
Woow
@rubanaugastin9049
@rubanaugastin9049 5 жыл бұрын
What's out put of this code
@viswa_mulukutla
@viswa_mulukutla 5 жыл бұрын
hey, looks simple but whats the logic here.. can you explain
@rohithsardar187
@rohithsardar187 6 жыл бұрын
2. a=int(input("enter a integer")) count=0 for i in range(1,a+1): if(a%i==0): count=count+1 if count==2: print(a)
@BhuveshDhiman
@BhuveshDhiman 5 жыл бұрын
x=int(input("Enter a no.")) s=0 i=1 while(i
@suryanshugarg10
@suryanshugarg10 5 жыл бұрын
good one
@BhuveshDhiman
@BhuveshDhiman 5 жыл бұрын
@@suryanshugarg10 thank you
@darshitthakar7999
@darshitthakar7999 5 жыл бұрын
Nice one .
@divyasree24
@divyasree24 5 жыл бұрын
why do we need to check s==2:;why not s==1?
@joseph481994
@joseph481994 5 жыл бұрын
@@divyasree24 a prime number is divisible by 1 and itself implying that the "if" block would have executed twice if the number was prime.
@selvib7634
@selvib7634 5 жыл бұрын
I have never heard a explanation about loop... Brilliant explanation 👌... Thanks a lot sir.
@talhaordukaya2204
@talhaordukaya2204 2 жыл бұрын
For the first one: a = 1 b = 1 for i in range(50): print(a) print(b) a = a + b b = b + a
@lalithkumar4794
@lalithkumar4794 2 жыл бұрын
niceee
@YashhC
@YashhC Жыл бұрын
Epic. But this code prints 100 Fibonacci numbers because we print a and b both till i=50. so use range(25). IDK how to do it with odd numbers like 51 because we can't take 25(50 nos), 26(52 nos) and 25.5 is not a thing.
@talhaordukaya2204
@talhaordukaya2204 Жыл бұрын
@@YashhC Yes, you are right. Here is the code. It works exactly like you want. I arranged for you :) a, b = 1, 1 print(a) for i in range(49): print(b) b, a = a + b, b
@YashhC
@YashhC Жыл бұрын
@@talhaordukaya2204 Yes that makes more sense! This can do any amt of numbers ^^
@kr.vinay4669
@kr.vinay4669 5 ай бұрын
Please replace a= 0 to start sequence with 0
@DineshKumar-xi8rv
@DineshKumar-xi8rv Жыл бұрын
Sir I am in 7th grade and you are one of the best coding teacher ever as well as your examples make easy to understanding coding in py.
@Chiranjeevi-xq6qy
@Chiranjeevi-xq6qy Жыл бұрын
2)prime numbers between 1-50 for x in range(1,50): for i in range(2, x): if x % i == 0: pass break else: print(x)
@killerkd69
@killerkd69 Жыл бұрын
Poor guy
@divyanshusingh6105
@divyanshusingh6105 4 жыл бұрын
1-n=int(input("Enter no of Sequence:")) def fib(n): a,b=0,1 while b
@androygaminghk1197
@androygaminghk1197 4 жыл бұрын
Tq for your teachings sir....u made python easy to learn and understand... Waiting for machine learning teachings...
@dharmishtabasita666
@dharmishtabasita666 4 жыл бұрын
n=int(input("enter the number for checking it is prime or not:")) i=2 while i
@bsmaheshkumar5328
@bsmaheshkumar5328 3 жыл бұрын
Why we need udemy when we have a professor like you. Outstanding explanation.
@frenchfatfather
@frenchfatfather 10 ай бұрын
for real?
@princeraj7106
@princeraj7106 4 жыл бұрын
x=int(input('enter a number')) i=2 while i
@vivekrenikunta2398
@vivekrenikunta2398 4 жыл бұрын
According to your code, 9 is a prime no which it is not.
@princeraj7106
@princeraj7106 4 жыл бұрын
@@vivekrenikunta2398 Recheck it.. Its certainly giving not a prime number as 9 as an input... I think u misinterpreted the output...Try again using proper indentation...!
@vivekrenikunta2398
@vivekrenikunta2398 4 жыл бұрын
Yeahh... I'm sorry'😅
@princeraj7106
@princeraj7106 4 жыл бұрын
@@vivekrenikunta2398 no issues...
@nshul16
@nshul16 Жыл бұрын
Sir I am Agrim of class 8 and I want to learn python because I like coding and programming (as you say programming is so fun😉)and I am learning by your videos. Thank you a lot sir and please keep guiding us.
@easydatascience2508
@easydatascience2508 Жыл бұрын
You can check mine too. The detailed Python playlist provides all the tuturials, and source files.
@adityajaiswal2891
@adityajaiswal2891 5 жыл бұрын
Thanks sir, I'm from Mechanical background and just joined Infosys..... Ur videos are helping me alot in my training period. 🙏🏼
@alejrandom6592
@alejrandom6592 3 жыл бұрын
I love that you use analogies to explain abstract concepts, great video!
@vaishnavigoswami2891
@vaishnavigoswami2891 5 жыл бұрын
you r the only one best teacher....thank u so much, sir....just because of u all the concept are clear now
@maisharubaiat5012
@maisharubaiat5012 4 жыл бұрын
Hello. My question is couldn't we use continue for the code you've written for pass and vice versa? Isn't the logic same for both continue and pass?
@harishharidas8504
@harishharidas8504 4 жыл бұрын
Even i was thinking the same : Got an Anwser ... "Continue forces the loop to start at the next iteration while pass means "there is no code to execute here" and will continue through the remainder or the loop body. Continue will jump back to the top of the loop. pass will continue processing.."
@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
@vernanonix
@vernanonix 4 жыл бұрын
I made my previous prime checker better. Super satisfied: x=int(input("For what number would you like to check primeness? ")) factor=2 while factorx/factor: print(x,"is a prime number.")
@sankalparora7254
@sankalparora7254 5 жыл бұрын
a=int(input("enter a number")) if(a==2): print('prime number') else: for i in range (2,a): if(a%i==0): print('not a prime') break if(i==(a-1)): print("prime number")
@sandeepch
@sandeepch 4 жыл бұрын
i like i(i==a-1)
@vernanonix
@vernanonix 4 жыл бұрын
@@sandeepch If you limit your range to the square root of a, you'll go faster. Granted, I don't think range will take a float number so you might need to ceil it. But essentially half of the factors exist before the square root and half exist after. But if you check everything in the first half, you'll find their pair in the second half. Thus you only need to check the first half.
@mtromanff320
@mtromanff320 2 ай бұрын
You are just rocking🔥....the way of teaching is out of world 🫡
@sainikhila4027
@sainikhila4027 4 жыл бұрын
fibonacci solution a = [0,1] for i in range(0,49): b = a[-1]+a[-2] a.append(b) print(a)
@babasahebbhosale7908
@babasahebbhosale7908 3 жыл бұрын
b=a [0]+a [1] is also right na
@Bharathsuru
@Bharathsuru 3 жыл бұрын
@@babasahebbhosale7908 no it's wrong if you do like that you will get [0,1,1,1,1,1,1...........]
@hjjkgdgfdgf
@hjjkgdgfdgf 6 ай бұрын
@@babasahebbhosale7908 If you do that, it will keep adding only first 2 numbers and that would be 0+1 always. Doing a[-1] + a[-2] would do a sum of last 2 digits, which is what is needed for fibonacci series
@venkatahariprasad8753
@venkatahariprasad8753 4 жыл бұрын
n = int(input('enter the no fibonnacci num')) n1=0 n2=1 print(n,"first fibonacci numbers are",) print(n1,' ',n2,end='\t') i=0 while i
@mahmoudamin8534
@mahmoudamin8534 6 жыл бұрын
1st 50 fib numbers : first = 1 second = 1 temp = 0 for i in range (50): if i == 0 or i == 1 : print(1) else: print(first+second) temp = first+second first = second second = temp
@syedaqib2912
@syedaqib2912 6 жыл бұрын
super it really works...
@sardarrashid639
@sardarrashid639 5 жыл бұрын
print(i) it will work
@fatihavc8453
@fatihavc8453 Жыл бұрын
from math import sqrt x = int(input('Enter a number to check primeness: ')) n = 2 for i in range(1,x-1): if x%n==0: print("not a prime") break elif n==x-1: print("prime") break n += 1
@harshalyeole7008
@harshalyeole7008 3 жыл бұрын
Hello Navin, I am basically Mechanical Design Engineer having 6+Years of experience. I am learing python from your videos on youtube. Your concept explanation is fantastic. How i can download practice examples?
@HighVibez01
@HighVibez01 6 ай бұрын
Just started learning.. converted to for loop x=int(input("enter the value")) for i in range(0,x): if x>av: print('out of stock') break print("candy")
@jhz5071
@jhz5071 5 жыл бұрын
Candy program using for loop: available = 5 x = int(input('How many candies you want? ')) for i in range(1, x + 1): if i > available: print('Out of stock!') break else: print(i, 'candy!!')
@jhz5071
@jhz5071 5 жыл бұрын
@Capt. John Price Where I missed that? I don't think we need i==1 anywhere in this program?
@jhz5071
@jhz5071 5 жыл бұрын
@Capt. John Price You mean I should initialize it first? As per my understanding, i is an iterator here and range function gives it an initial value as well which is 1 in this case because I have mentioned it, otherwise it'd have been 0. Please correct me if I am wrong.
@anindian4601
@anindian4601 3 жыл бұрын
av=6 x=int(input("how many candies you want :")) i = 1 while iav: print("Please Collect",i-1,"Candies &",x-av," Candies are Out of Stock ") break print(i,"Candy") i+=1
@prithvirajmaity4600
@prithvirajmaity4600 4 жыл бұрын
easiest solution for fibonacci x,y=0,1 while y
@paharididi6501
@paharididi6501 4 жыл бұрын
Cool bro
@prithvirajmaity4600
@prithvirajmaity4600 4 жыл бұрын
@ENTERTAINMENT WORLD i ran the loop till 50, it will run fibonacci numbers till 50
@vernanonix
@vernanonix 4 жыл бұрын
For prime numbers: x=int(input("For what number would you like to check primeness? ")) factor=2 upper=x while factorupper: print(x,"is a prime number.") The point of the upper variable is to limit the number of actual operations needed to check. I'm checking one by one going up a list. But I know for a fact that once the numbers are dividing by are bigger than their results, it's a pointless task. So I'm basically constantly updating my upper bound for what I can check. Granted, I could also just set the while loop to only work when factor is less than x/factor, which does save memory. But I got way too much pleasure figuring out this method.
@vernanonix
@vernanonix 3 жыл бұрын
@Papa Bear Your logic is fine, but you end up checking a lot of unnecessary numbers when in reality, if you find a factor n such that 1
@alirezafahama9299
@alirezafahama9299 6 жыл бұрын
a,b=0,1 for i in range(0,51,1): print(a,end=' ') a,b=b,a+b
@peacefullmusic8374
@peacefullmusic8374 3 жыл бұрын
is it correct?
@viveksonkar3033
@viveksonkar3033 5 жыл бұрын
import math total = 0 P_num = int(input("Enter the value")) for i in range(1,P_num + 1): remainder = P_num % i if remainder == 0: total = total + 1 if total == 2: print(f"{P_num} is prime Number") else: print (f"{P_num} is not Prime number") Thank you so much Teluskon
@chaparalasrinivasrao7503
@chaparalasrinivasrao7503 6 жыл бұрын
Hi, Your python videos are very useful. Can you guide me how to improve my program skills because I don't have any programming knowledge before.
@ML.ArtificialIntelligence
@ML.ArtificialIntelligence 4 жыл бұрын
x=int(input("enter a number")) i=2 while i
@Sagarnamaa
@Sagarnamaa 5 жыл бұрын
Fib: x=0 y=1 for i in range(0,50): print(x," ", end="") next=x+y x=y y=next
@adarshsahani1947
@adarshsahani1947 3 жыл бұрын
well but 0 is not first in series
@Sagarnamaa
@Sagarnamaa 3 жыл бұрын
@@Svcollections941 crt ?
@nakeebraut8676
@nakeebraut8676 3 жыл бұрын
a=int(input('How many candies?')) av=5 i=1 While iav: Print('candies left=, end='') Print (av) break Print ('candy') i=i+1
@gianluigi5828
@gianluigi5828 4 жыл бұрын
This video is awesome. I understood everything thanks a lot
@zakiasmaa6834
@zakiasmaa6834 2 ай бұрын
Teaching is an art. thank youuuuuuuuuuu
@srikrithibharadwaj6779
@srikrithibharadwaj6779 4 жыл бұрын
Hi Sir, all your sessions are awesome 👏 Thanku so much🙏🏻 I’ve a question.. can’t we use continue instead of pass statement ?
@abharani7283
@abharani7283 4 жыл бұрын
I have also the same doubt as both works in A same way 😳
@srikrithibharadwaj6779
@srikrithibharadwaj6779 4 жыл бұрын
Yup
@tanzimulayaantanaf8969
@tanzimulayaantanaf8969 4 жыл бұрын
no, you can't use. Those are two different thing. Try to use debug to see what's the difference.
@prempratapsingh7323
@prempratapsingh7323 3 жыл бұрын
for i in range(1,101): if i%3!=0 and i%5!=0: print(i) This is the 1st question ask in pervious video or the another method for the question done by sir by using " continue"
@shantiratha6276
@shantiratha6276 5 жыл бұрын
You are the best teacher of python on this planet 🌍🌍🌍
@MrObadebella
@MrObadebella 2 ай бұрын
qn1. x,y = 1,1 for i in range(1,51): print(x) y,x = x + y,y qn2. x = int(input("enter the number")) a = 0 i = 1 while i
@abusaeedansari7231
@abusaeedansari7231 5 жыл бұрын
x = int(input("Enter the Number : ")) # To find the given number is prime for not z = 2 for i in range(1, x): if x % z == 0: if x == z: print(z, " Is a prime number..") else: print(x, " is not a prime number...") break else: z += 1 #Finally done
@cv5033
@cv5033 5 жыл бұрын
But 4 also gives 0 remainder but it is not prime
@prabhatranjan1078
@prabhatranjan1078 5 жыл бұрын
@@cv5033 Then it will print not prime
@sumant5588
@sumant5588 4 жыл бұрын
this code fails for input 1.
@linuso77
@linuso77 4 жыл бұрын
@@sumant5588 aap batao 1 prime ya not prime .....1 ko consider nhi karte ...i want to just add command for 1 input from user it will show invalid or u can show any thing u want to
@Sumanth30796
@Sumanth30796 4 жыл бұрын
fibonacci series a=0 b=1 print(a) print(b) for i in range(0,10): c=a+b print(c) a=b b=c
@naumanhameed900
@naumanhameed900 5 жыл бұрын
list = [0,1] for i in range(49): list.append(list[-1]+list[-2]) print("Fibonacci Sequence is = ", end="") for i in list: print(i, end=" ")
@aravindtnpsc4568
@aravindtnpsc4568 4 жыл бұрын
Your condition will print 51 fibonacci numbers
@ezhilan1
@ezhilan1 4 жыл бұрын
awesome logic sir.Great
@webbrain19
@webbrain19 6 ай бұрын
fib50 = [0, 1] for i in range(2, 50): fib_next = fib50[-1] + fib50[-2] fib50.append(fib_next) print(fib50)
@tejasteja6653
@tejasteja6653 3 жыл бұрын
# for prime number x=int(input("enter the no.")) b=False if x==1 or x==2: print("prime number") elif x==0: print('zero') else: for i in range(2,x): if x%i==0: b=True if b: print('not prime') else: print('prime')
@samuelbettencourt3813
@samuelbettencourt3813 11 ай бұрын
Here's what I have for my Fibonacci solution, but having the user specify how many numbers they'd like as opposed to just using 50: counter = 1 x = 0 y = 1 length = int(input('How many Fibonacci numbers would you like to print? ')) while counter
@yashm05
@yashm05 5 жыл бұрын
x = int(input("how many candies you want?")) if x
@adarshsahani1947
@adarshsahani1947 3 жыл бұрын
still print 10 candies but the avialble candy is 5
@Hydgodharollu
@Hydgodharollu 3 жыл бұрын
in else statement print(' candies'*5) instead of print(' candies'*x) or first take available=5, then print(' candies'*available) x = int(input("how many candies you want?")) available=10 if x
@varunakavoor
@varunakavoor 5 жыл бұрын
nterms = int(input("Enter the number of terms")) n1=0 n2=1 i=0 while i
@indranujdas5917
@indranujdas5917 4 жыл бұрын
1. Fibonacci Series Code: x=0 y=1 print('The Fibonacci Series will be: ') print(x) print(y) i=1 while i
@rohansinha6309
@rohansinha6309 4 жыл бұрын
Thanks buddy 😄
@bmguitarhub6135
@bmguitarhub6135 4 жыл бұрын
why 48 not 50?
@akarshasudheer6626
@akarshasudheer6626 4 жыл бұрын
@@bmguitarhub6135 Because we are already printing value 0 and 1 before entering while loop so that leaves us with 48 more values to complete first 50 fibonacci numbers
@bmguitarhub6135
@bmguitarhub6135 4 жыл бұрын
@@akarshasudheer6626 yeah, thank youuu
@Manoj_Max
@Manoj_Max 4 жыл бұрын
Can you explain 'pass' statement clearly....for yy we are use that condition??...plz anybody
@Sagarnamaa
@Sagarnamaa 5 жыл бұрын
Prime Number: x = int(input("Enter Number")) if x==0 or x==1: print("NP") else: i=2 while i
@Staab0
@Staab0 5 жыл бұрын
a = 10007 b = a if a==1: print(a, "Is not prime") while b > 2: b -= 1 if a%b==0: print(a, "is divisible by", b, ",", a, "is not prime") break if b==2: print(a, "Is a prime")
@arunavsen2234
@arunavsen2234 5 жыл бұрын
brilliant
@nigampratap2466
@nigampratap2466 4 жыл бұрын
n=int(input("enter the value")) i=2 while i
@priyanshikothari7890
@priyanshikothari7890 4 жыл бұрын
Hey i am new to all programming stuff, i find these tutorials very helpful being a beginner. I have a question Shouldn't we write i%3!=0 instead of i%3==0 and then continue
@jaideepsingh3143
@jaideepsingh3143 4 жыл бұрын
have done with i%3!=0 and got the same output
@priyanshikothari7890
@priyanshikothari7890 4 жыл бұрын
Aren't they exact opposite?
@aishwaryalaxmiveeramalla739
@aishwaryalaxmiveeramalla739 4 жыл бұрын
it depends on the condition we wanna apply
@mashrurrahmannavid8305
@mashrurrahmannavid8305 4 жыл бұрын
Yes both are correct,as we are changing in both
@YourHotMan
@YourHotMan 2 жыл бұрын
can someone explain me...why he use * while i
@tusharkantidebnath2316
@tusharkantidebnath2316 3 жыл бұрын
x= int(input("Enter your number")) for i in range(2,x): if x%i ==0: print("Number not prime") break if x == i+1: print("Prime number")
@khairahammed5187
@khairahammed5187 5 жыл бұрын
This is the only channel which made me satisfied :) Thanks dude
@hrpasisia3033
@hrpasisia3033 3 жыл бұрын
1. Print first 50 fibonacci numbers lim = 50 count = 0 n1 = 0 n2 = 1 while count < lim: print(n1) last_number = n1 + n2 n1 = n2 n2 = last_number count += 1 2. Check a given number is prime or not num = int(input("Enter Number : ")) if(num==2): print('Prime') else: for i in range(2,num): if num % i == 0: print("Not prime") break else: print("Prime")
@nagapranithasamudrala2224
@nagapranithasamudrala2224 4 жыл бұрын
first=0 second=1 print(first) print(second) for i in range(0,48): next=first+second print(next) first=second second=next
@tanzimulayaantanaf8969
@tanzimulayaantanaf8969 4 жыл бұрын
0 is not included in a fibonacci series
@sureshjohnny
@sureshjohnny 2 ай бұрын
Thanks Navin sir for giving wonderful sessions. Please give real time example for pass keyword. In which scenario we need to use pass keyword. In this example of pass keyword, we can simply avoid writing if condition that evaluates odd number and pass keyword and that works. Please give best example for pass keyword if possible. Thanks
@madhavmishra6937
@madhavmishra6937 6 жыл бұрын
Hi Navin, First of all kudos on your wonderful work! I have a doubt here regarding the difference b/w "pass" & "continue". Even if we look at the example in this video....even if we had used "continue" instead if "pass", odd numbers could have got printed. So, my doubt is that if both the keywords (pass & continue) are asking to ignore the remaining code of the loop 'for that iteration', then what is exactly different about them?? Thanks in advance!
@madhavmishra6937
@madhavmishra6937 6 жыл бұрын
Thanks...that cleared the air considerably....
@vedhakrishnapanchami2026
@vedhakrishnapanchami2026 5 жыл бұрын
if we use continue it completely skips the whole process and proceeds for the next iteration in the for loop but whereas pass gets exit from that particular block and execute the remaining block
@vedhakrishnapanchami2026
@vedhakrishnapanchami2026 5 жыл бұрын
like wise in the given code , pass goes to else block and if we use continue it doesnt go to else block
@J.S.W0822
@J.S.W0822 Жыл бұрын
n=int(input ("enter the any number")) i=1 List=[] for i in range (1,n+1): if (n%i==0): List.append (i) print (List) if len(List)
@DeshDeepak08
@DeshDeepak08 5 жыл бұрын
num = int(input("enter number of digits you want in series (minimum 2): ")) first = 0 second = 1 print(" fibonacci series is:") print(first, ",", second, end=", ") for i in range(2, num): next = first + second print(next, end=", ") first = second second = next
@sombithsen177
@sombithsen177 3 жыл бұрын
Ass 2: i=int(input('Enter a number: ')) n=2 while n
@sanjag
@sanjag 3 жыл бұрын
This has been so incredibly helpful. Thank you!!!
@grapejuice232
@grapejuice232 4 жыл бұрын
list = [0 , 1] l = int(input('fibonacci for how many nums???')) for i in range(1 , l+1): if i > 2 : list.append(sum(list)) print(list)
@lavasrani3887
@lavasrani3887 5 жыл бұрын
I have a question @Telusko . While.......: If......... : If ....... : Break Here the whole while loop is gonna break or just if loop inside while .
@kibreabhaileselassie5136
@kibreabhaileselassie5136 6 жыл бұрын
When you will start with "Machine Learning"?pls
@anindian4601
@anindian4601 3 жыл бұрын
Not only machine learning we want Artificial Intelligence TOO.
@purveshxd
@purveshxd 4 жыл бұрын
Everyone explains about the loop but sir you explained the workflow of loop and that's the best. Thank you so much for this course I just started now 😊
@harshvora1922
@harshvora1922 5 жыл бұрын
Number is prime or not: x = int(input("Enter a number: ")) i = 2 while i
@janandanyoganadan616
@janandanyoganadan616 3 жыл бұрын
superb
@janandanyoganadan616
@janandanyoganadan616 3 жыл бұрын
but does not work for negative nubers
@Rajadahana
@Rajadahana 2 жыл бұрын
This is how I understood the three concepts. break - terminates the loop, or comes out of the loop continue - goes to the start of the loop pass - as the word suggests, goes to the next step in the loop
@harithareddy1731
@harithareddy1731 5 жыл бұрын
Really great effort Sir..It was really amazing ..!
@anasuyasaha1605
@anasuyasaha1605 4 жыл бұрын
Dear Sir, I am highly fond of you. I just want to know instead of if else we can only do this with if only. for i in range(1,101): if i%2!=0: print(i), am I right?
@vanshbharadwaj9829
@vanshbharadwaj9829 4 жыл бұрын
yes it works
@AdityaPandey-ow2yu
@AdityaPandey-ow2yu 4 жыл бұрын
yes but you will get odd numbers
@shivanshpandey7239
@shivanshpandey7239 3 жыл бұрын
FIBONACCI SERIES: a,b=0,1 while a
@samarthsaxena3998
@samarthsaxena3998 5 жыл бұрын
#Check the number is prime or not num = int(input("Enter no")) for i in range(2,num): if num % i == 0: print("Not prime") break else: print("Prime")
@vernanonix
@vernanonix 4 жыл бұрын
And one last pass at the prime number question because I'm having fun with this one in particular. Readded the upper variable to cut down on operations while only storing one more variable. Added checks for anything less than 2. I had fun with this one. x=int(input("For what integer would you like to check primeness? ")) from math import sqrt if x
@satwikdua
@satwikdua 11 ай бұрын
how about this? x = int(input("give a number")) i = 2 while i
@divyamkohli510
@divyamkohli510 5 жыл бұрын
Sir I don't get to know the actual difference b/w 'Continue' and 'Pass', these both functions are almost the same.
@BoomcoreIsLive
@BoomcoreIsLive 5 жыл бұрын
Pass is used to ignore a block, that is used for empty blocks... Where, continue is used to skip the current iteration of the loop, it continues with next value(increment/decrement).
@princebargujar63
@princebargujar63 4 жыл бұрын
statements after continue does not executed,while after pass executed
@subhayansinha4417
@subhayansinha4417 5 жыл бұрын
Amazingly explained! Thank you sir!
@sandeepsahu8743
@sandeepsahu8743 4 жыл бұрын
avg=20 x=int(input("ENter number of candies you want:")) i=1 while iavg: print("SOrry! we only have" + " " + str(avg) + " " + "candies left") break print("candy") i+=1
@musicboiis4783
@musicboiis4783 4 жыл бұрын
what is the answer of questions at the end of video?
@idreesahmed7403
@idreesahmed7403 4 жыл бұрын
a = int(input("Enter Any Number : ")) count = 1 for i in range(1,a): if a % i == 0: count +=1 if count == 2 : print(a,"is prime") else: print(a,"Is not a prime")
@akshayak4007
@akshayak4007 2 жыл бұрын
Your code is wrong
@akshayak4007
@akshayak4007 2 жыл бұрын
Range should be a+1
@vinaybojjalwar
@vinaybojjalwar 5 жыл бұрын
For 50 fibonacci series First=0 Second=1 Temp=0 For i in range(49) Print(temp) First=second Second=temp Temp=first+second
@ashish7750
@ashish7750 5 жыл бұрын
0 1 2 3 5 8 13 21 output is not the correct Fibonacci series.
@bhajanmandlimumbai
@bhajanmandlimumbai 5 жыл бұрын
though the logic is correct
@kaveeshajayasuriya8515
@kaveeshajayasuriya8515 5 жыл бұрын
To check a given number is prime or not n=int(input("Enter Number")) if n=2: for a in range(2,n): if n%a==0: print("It is not a prime number") break elif a==n-1: print("It is a prime number") elif a
@sufiyanmogal1527
@sufiyanmogal1527 2 жыл бұрын
# 2nd assignment Prime Number Finder num = int(input('enter a number ')) prime = True for i in range(2,num): if(num%i==0): prime = False break if prime: print("This Number is prime") else: print("This Number is not prime")
@shyamal5935
@shyamal5935 4 жыл бұрын
2) num = int(input("Enter a number")) for i in range(1, num-1): if num % (num-i) == 0: print("non prime number") break else: print("prime number")
@EylulTurksever
@EylulTurksever 4 жыл бұрын
after i reaches (num/2), it is no longer needed to try further to see if its dividable. almost half of the processing is unnecessary in this case.
SISTER EXPOSED MY MAGIC @Whoispelagheya
00:45
MasomkaMagic
Рет қаралды 13 МЛН
REAL 3D brush can draw grass Life Hack #shorts #lifehacks
00:42
MrMaximus
Рет қаралды 11 МЛН
Will A Basketball Boat Hold My Weight?
00:30
MrBeast
Рет қаралды 103 МЛН
#20 Python Tutorial for Beginners | While Loop in Python
12:43
Telusko
Рет қаралды 1,6 МЛН
Learn Python OOP in under 20 Minutes
18:32
Indently
Рет қаралды 73 М.
#63 Python Tutorial for Beginners | Exception Handling
15:59
Telusko
Рет қаралды 523 М.
While loops in Python are easy ♾️
6:58
Bro Code
Рет қаралды 389 М.
#26 Python Tutorial for Beginners | Array in Python
15:57
Telusko
Рет қаралды 1,3 МЛН
break and continue Statements in Python
16:49
Neso Academy
Рет қаралды 12 М.