I've 2 years of experience in python development. Even though I know a lot. I watch all of Harry bhai's videos and love the way he explains. Good job Harry Bhai 👍
@rajibsant9741 Жыл бұрын
Love bhaai
@rajibsant9741 Жыл бұрын
Help me sir how I start my journey I am 1st year it student After read any programing language I forget it 🙏✊
@MystikPrae Жыл бұрын
@@rajibsant9741 same here
@umerkhan-kv9gd Жыл бұрын
@@rajibsant9741 Mery bhai mene MBA kia hai or mein programing seekh raha hn jb mein seekh skta hn to ap mujh sy kafi choty ho apki picking power mery sy zyada hai practice zyada sy zyada karo or jxt ek programing language par focus karo
@rajibsant9741 Жыл бұрын
@@umerkhan-kv9gd ok
@mariamhasan3733 Жыл бұрын
Day #18 done! The story of the ants was pretty interesting 😆
@DeepakKumar-mb2lw7 ай бұрын
It has happened to my laptop a few times in June-July. 🤣🤣
@SioslayerАй бұрын
@@DeepakKumar-mb2lw what was on the laptop that made ants to come? 🤔
@DeepakKumar-mb2lwАй бұрын
@@Sioslayer there was nothing but the my room was on top floor and because of summer 🌞 due to high temperature, room temperature was too hot 🥵 so ants usually get inside laptop 😔💻 and does even come out later 😭
@mihirtechneer4377 Жыл бұрын
I am not from IT, 30 years exp in Maintenance department (Mechanical Engineering) I have learned coding Python from Harry ( as well others ! )... thanks Harry!
@rubabkhan7693 Жыл бұрын
so still what you do ?
@mechanosys Жыл бұрын
@RUBAB KHAN Working with manufacturing company.
@srinumeda6579 Жыл бұрын
I am From mechanical engineering sir
@Amar-yaduvanshi239 ай бұрын
Bro kya karna padega mechanical engineer ban ne ke liye
@harshsawant1106Ай бұрын
@@Amar-yaduvanshi23 mechanical engineering ki exam pass karni padegi bhai🤣🤣🤣
@yagneshsuthar1820 Жыл бұрын
🤣🤣 Bhai, honestly, chitiya (ants) ka example bahot hi achcha that.. learning with fun. Hats off to you sir ji 🤠
@biswajitdhali18614 ай бұрын
Is line ko comments per dhundne aya tha,,,Apka comment sa dil khush ho gaya,,,,
@Sage_Gamer1124 ай бұрын
9:27 😂
@kidKrishkode7 ай бұрын
9:13s, I heard this story for the second time, in the last video of Python. And yes I have also used this many times but in winters when I go to the mountains.Then I did it to warm up the computer. It helps to heat up many computers.👍🏻👍🏻👍🏻
@Jaijairam214 Жыл бұрын
sir aapki old videos bahot help karti hai mai full stack web devoloper hu
@Unscripted_himanshu Жыл бұрын
i'm new at coding or aapne kaha the koi bhi biginner seekh sakta h lekin for loop wale me mujhe last wala nhi samajh aaya ager mujhe uska solution dekhne ke liye kissi or ke videos dekhne hote to mai aapke videos kyu follow kerta ..plzz bhaiya videos ko ye dhyan me rakhker banaiye ki ekdum biginner sab kuchh samjh jaye ....mujhe aapka teaching style bahut pasand aaya h i hope ki aap iss per kaam krnge ...thank uhh bhaiya for doing this free for us ....love from lucknow
@saugatnepal5956 Жыл бұрын
I was inconsistent for a few days but yesterday I covered all that up. And now i am all caught up. :)
Day 4 of #100DaysOfCode. Today in this video 18, I learned about Python's while loops, which execute statements as long as a condition is true, and how to use else statements with them. I also explored emulating do-while loops using an infinite while loop and a break statement with an if condition, ensuring the loop body executes at least once. Thank You Harry Bhaiya.
@muhammadyaqoob9129 Жыл бұрын
With the break statement we can stop the loop even if the while condition is true With the continue statement we can stop the current iteration, and continue with the next With the else statement we can run a block of code once when the while condition no longer is true
@Vlogs_with_lifelesson Жыл бұрын
I have learned many things from and still I just want to learn more things from you whatever you teach us is the easiest way to make us understand that's why I love to watch your videos.
@YessajiRao Жыл бұрын
In case of decrementing while loop where we don't need to print 0 we can simply write --- while i : print(i) i = i-1 in case of C,we could write while(i--){ printf("%d",i); } Given we need to initialize i as 6 instead of 5
@sapnarana6408 Жыл бұрын
10:43
@ummi7292 Жыл бұрын
hey ...that hack about getting rid of ants using a while loop ... ! truly genius bro !
@sohailnawaz186 Жыл бұрын
in while loop, always give a variable first, second give a condition which is true at the start of the loop, third put the command in the loop, fourth within the loop convert the condition into false.
@Kuch_Bhi-lets_explore_it Жыл бұрын
Day 18 Done 🔥🔥, Amazing video harry bhai the way you teach us we loved that Thank you so much for being our Harry Bhai & Teacher ❤❤🙌🙌
@palak004 Жыл бұрын
do..while is a loop in which a set of instructions will execute at least once (irrespective of the condition) and then the repetition of loop's body will depend on the condition passed at the end of the while loop. It is also known as an exit-controlled loop.
@Mr.Nobody.r2 Жыл бұрын
# table Number = int(input("Enter number")) i=1 while i
@asadurrehman3591 Жыл бұрын
answers=['east','islamabad'] q1=input('where does the sun rises= ') q2 = input('what is the capital of pakistan= ') prize=100 while q1 in answers and q2 in answers: print('Both answers are right and you wont',prize*2) break while q1 in answers and q2 not in answers: print('one is right and one wrong so you won ',prize) break while q1 not in answers and q2 in answers: print('one is right and one wrong so you won ',prize) break while q1 not in answers and q2 not in answers: print('Both the answers are wrong so you won ',prize*0) break
@allstarworriop Жыл бұрын
Nice piece of coding❤
@amitkhare610 Жыл бұрын
print("""Do you want to use calculator? Press 1 to 9 for YES Press 0 for NO""") a = int(input()) while a: welcome = "welcome to calculator world" print(welcome.title()) a = int(input("Enter the first number: ")) b = int(input("Enter the Second number: ")) x = int(input("""1. Enter 1 for add 2. Enter 2 for Sub 3. Enter 3 for Div 4. Enter 4 for Mul """)) match x: case 1: c = a + b print ("Add is: ", c) case 2: c = a - b print ("Sub is: ", c) case 3: c = a / b print ("Div is: ", c) case 4: c = a * b print ("Mul is: ", c) case _: print("Enter the correct option") print("""Still do you want to use calculator? Press 1 to 9 for YES Press 0 for NO""") a = int(input()) else: print("I respect your decision")
@FunnyVideosZ53 ай бұрын
One could be an excellent programmer but that doesnt mean he will be a good teacher as well. Harry bhai has both the skills which makes him an extra ordinary teacher, keep up the good work!!!.
@allrounderjs2016 ай бұрын
for loop in range(4): print(2) a=int(input("ENTER YOUR NUMBER HERE: ")) while (a
@IAMGG-14 күн бұрын
main sirf 13yo houn pr phir bhi aap ki videos koding sekhny main bohot help kr rhi hain
@Nasibullah1210 ай бұрын
Following is an example of using combination of while loop and break statement as do while loop in python. i = 10 while (True): print(i) i = i+1 if i>10: break
@thatcoolkid370 Жыл бұрын
#Day 18 in 100DaysOfCode. Maintaining consistency is a difficult thing.
@PRIYANSHUCHAKRABORTY-yv3mq10 ай бұрын
indeed... but we have 2 if we want 2 outstand the crowd.
@infodiff6 ай бұрын
I am doing 8=10 lectures easily daily. hope to finish in 10 days all 100 lectures. So interesting. Thak you Harry. I am a Professor Of Medicine. MD Medicine but i will make good use of this programming knowledge and have already made scripts to manage pt data, medical records, pharmacy etc using php n mysql. Now will try to do the same using python. jango and flask look daunting to me right now, but i am ready to work hard and dont get tired sitting n codign for 12-14 hrs daily. Just love it. Thanks for being such a good tacher n giving all this away for free. We r giving u a lot of yt watch hrs :D
@NishantKumar_N5 ай бұрын
num = int(input("Enter a number (greater than 0) : ")) getName = input("Enter your name : ") for num in range(num): if(num%2==0): print("Hi", getName) else: print("I Love You💝!")
@heetshah90463 ай бұрын
i=0 while(i
@aparajita30 Жыл бұрын
10:33 Else statement will execute because -5 is less than 0
@_tryn_ Жыл бұрын
Harry Sir, I'm right now in class 9th and i have extreme intrest in computers and i want to work for Google or Microsoft in the future, so i am learning web dev and python since class 8. I've made a fully functional chess ai in python on my own and a portfolio website. My question is, Is this the right time to do all this?
@BLazerrrr123 Жыл бұрын
yep bro me too starting at your age
@Ayush-mg6xw Жыл бұрын
Keep your mathematics really strong it will help you a lot
@masumhaither60777 күн бұрын
print(" guess the number game") print(" between (1-20)") your_friendnum = int(input("enter a number for your friernd in order to play between 1-20 (dont show them🤫): ")) num = int(input("enter a number: ")) while(num != your_friendnum): num = int(input("guess the number again😛: ")) if num == your_friendnum : print("you guessed it right!!!!!🤩") elif num == your_friendnum-1 : print("you are close😏") elif num == your_friendnum+1 : print("you are close")
@masumhaither60777 күн бұрын
a simple game made by a 12 years old.(duh!🙄)
@MyID.N8 ай бұрын
@CodeWithHarry bro, I am new to programming and here is what I did to print the table of 3 i = 0 k = 0 while i < 32: while k < 11: print("3 * ", k ,"=" ,i) i= i+3 k= k+1
@APOBANGO7 ай бұрын
yeah that is right but you can do it in easier by by using for loop like this print("The table of 3 is:- ") k=1 for i in range(3,30+1,3): print("3 *",k,"= ",i) k=k+1
@Mr.Phantom0017 ай бұрын
# number multiplication order program till 10: a = 1 b = int(input("enter number :")) while (a < 11): print(a,"*",b,"=",a*b) a = a + 1
@prathamveerrajput7250 Жыл бұрын
Thank you Harry Bhai for these videos. It really help me alot
@CodeWithVasu Жыл бұрын
while True: number = int(input("enter the value of number:= ")) print(number) if not number > 10: break;
@Om-pant02 Жыл бұрын
Harry bhai please make a detailed Android course series like this. btw gr8 content & love you 💖❤️
@gpsmarket5823 Жыл бұрын
make video for web 3
@shubhamsharma4336 Жыл бұрын
question - how to emulate a do-while loop in python ans - while True: number = int(input("Enter a positive number : ")) print(number) if not number > 0: break print("done with emulation")
@coder-vq7it Жыл бұрын
Bhai tera code tab tak chalta rahega jab tak negetive value nahi dalega tho kya fayda?
@coder-vq7it Жыл бұрын
But well try though👍
@happyrawat-x8s9 ай бұрын
amazing harry bhai
@thechillstation4492 Жыл бұрын
day 18, things are getting difficult, slowly but definitely, hope i get through these 100 days
@krishivgoel212211 ай бұрын
a = int(input("Enter Number: ")) b = int(input("Till?: ")) b = b - 1 print(a) c = a while(b>0): c = c + a b = b - 1 print(c) this is a code which gives the table of a number for example, I want the table of 2 till 2x10 I will put 2 in a, and 10 in b and, it will give me the table of 2 till 2x10 i.e. 20
@tanmayirakshetti84665 ай бұрын
value=int(input("enter two digit value:")) print("value is not in two digit",value) while(value
@ujjwalkumaragrahari4285 Жыл бұрын
Break is a termination of loop Continue is a skip current execution
@salmanhaider8182 Жыл бұрын
a=int(input("enter any no yoy want to make table=")) b=1 print("this is your table") while(b
@vishalsaini4764 Жыл бұрын
Thankss man good code
@mhm29362 ай бұрын
Harry sir! Great love from Pakistan ❤
@parasdhaundiyal7706 Жыл бұрын
Harry bhai you are great man❤️
@niralikevlani4793 Жыл бұрын
bhot easy kr diya h apne learning hamare liye thank you so much for helping us......😇
@victorb226227 ай бұрын
12:47 do while loop मतलब पहले इस्तेमाल करो फिर,,,,, ।first you do ,then the confition ,if condition not match then dont do
@LASTSTRANGER Жыл бұрын
Present Sir , #Day_18
@cr7johnChan Жыл бұрын
#do while loop in python while(1): print(i) i=i+1 if(i>=a): break
@mdsohanurrahmanhridoy1343 Жыл бұрын
Day - 18 Completed😍
@chaitanya-n2y6 ай бұрын
My practice solution #Decrementing while loop i = 5 while (i > 0): print(i) i = i -1 else: print("Happy New Year") #Increment while loop y = 1 while (y 0: break
@DasviWallah Жыл бұрын
10:35 Else execute hoga kyuki wo loop sae bahar ayega
@sardarestatemarketing Жыл бұрын
Num = 0 num2 =10 while (Num
@MatheoRiddlesGirl_5 ай бұрын
Instead of writing, count = count + 1/ count = count - 1 we could also write count +=1/ count -=1 #it basically means the same thing, its just an easier way of writing it.🤗
@sohailnawaz1811 Жыл бұрын
While loop requires initiating a variable. then while statement. a condition inside the while loop which makes while loop stop. Else can also be added at the ended. Do while loop is not available in python. Syntax variable=0 while(variable condition): statement to make condition false. else we can make a do while loop in python as well.
@RajAryan7 ай бұрын
Dude, your teaching is brilliant. Talking about something else I really enjoy the way you say "bahut" 😂. It has stuck in my mind and now I also say it the same way 😄
@DrRitul Жыл бұрын
i wrote this program with for loop it can print any table of number input by user intro = " Table Writer Program " print(intro.center(50, "*")) n = int(input("Enter NUmber: ")) for i in range(n, 11*n, n): print(i)
@VnM-vm3wm Жыл бұрын
print ("Table Writer Program".center(50, "*")) n = int(input("enter bich: ")) for i in range(11): print ( n , "x" , i, "=", n * i )
@animatorved4243 Жыл бұрын
2 din me 18 video nipta diya mene with making notes and program, tabhi course h aapka 😍😍😍
@marvel_united_cr76 ай бұрын
Day 18 done ✅
@computer__sci Жыл бұрын
while loop ka is sai best use mene aaj tak nahi dekha
@SameerKumarMahapatra4 ай бұрын
n = int(input("Enter a number: ")) i = 1 while i
@khizrshaikh9902 Жыл бұрын
10:27 Yes Else block will definitely execute
@RajNamdev_19 Жыл бұрын
LOVE YOU HARRY BHAI❤
@naveent2799 Жыл бұрын
Count waale me straight away else execute hoga, kyunki - value badti rahegi aur aise loop condition meet nahi hogi to sidha else execute hoga.
@yashchari8497 Жыл бұрын
The loop starst from 1 then it prints the 3 number and it leaves the third number and prints 4 ,likewise it iterates every third number between 1 to 12
@amitranjeetjha1240 Жыл бұрын
This course is awesome 🔥🔥
@tanmayirakshetti84665 ай бұрын
i=50 while(i>=1): print(i) i=i-1
@NEERAJ-dw9bt9 ай бұрын
Present sir 🤚
@KoushikDas2005 Жыл бұрын
10:32 "I am inside else"
@yatindrapabbati6878 Жыл бұрын
Day 18-PRESENT SIR!
@NeetuRuhela-e1k3 ай бұрын
Thanks for this ultimate course ❤❤
@DawoodArifKhan6 ай бұрын
I dont know why these kind of teacher we dont get in college. 👍
@bangtangirl8784 Жыл бұрын
Harry Bhai Core Java k course le ke aao ek vedio banado... Wipro training period m sikhne ko bola h project m lgenge Java.. but study source nhi mil rha koi acha... Tum banado plz bhaiya next week m 😊❤️
@luckysingh5271 Жыл бұрын
while loop done with day 18, understood the function of while loop
@narullah69 Жыл бұрын
what an intelligence of harry bhai #ants_around_harry's_laptop 😂😂
@bhavjeetsinghmoyal1963 Жыл бұрын
I made the first one like this: i = 0 while(i
@sumitsaini4449 Жыл бұрын
this is my implication of do while, what do u guys think? i = int(input()) count = 0 while i < 7 or count == 0: print(i) count += 1 i += 1
@anonymous____________________4 Жыл бұрын
Pranam bhrata 🙏 apka bahutt baht dhanyawad ❤️😌🙏😇
@arohi_3033 ай бұрын
Day 18✨
@nirrawal52653 ай бұрын
hi what's your class level?
@arohi_3033 ай бұрын
@@nirrawal5265 11th
@arohi_3032 ай бұрын
@@nirrawal5265 11th
@ajaynegi1753 Жыл бұрын
Hi, finally i have covered all past videos.
@AmanKumar-vm4ez Жыл бұрын
Good evening sir thank you for this video
@rubabkhan7693 Жыл бұрын
aapky is new course se mujhy loops samah ay hen purane se nhi arahe the 😂shukar hai mai bhi loop kr k aapki video p hi aaya
@kunalgurav8194 Жыл бұрын
i = 17 while (i!=100): print ("I will learn python programming") i+=1 print ("I learnt python programming")
@shwetaagarkar9787 Жыл бұрын
I+=1 Will be error
@kunalgurav8194 Жыл бұрын
@@shwetaagarkar9787 No bro i+=1 bhi thik vaise hi kaam karega jaise ki i = i + 1
@WolfieHunk8 ай бұрын
count=10 while(count>0): print(count) Why this becomes a infinite loop?? bcz i have given condition count>0???
@SaiGamer248 ай бұрын
nah bro its infinite cuz there is no updation statement after print() write count=count-1
@deepikaop4545 Жыл бұрын
i = 1 while i
@ATTIQ_OFFICIAL Жыл бұрын
easy way to make infinity loop:- while(1):
@pythonlover4733 Жыл бұрын
Why not for 0?
@niteshpariharr Жыл бұрын
Didn't try in code but..Do While loop in python:- i = True a = 1 while i : print(a) a = a+1 if a>5: i = False Current me if I'm wrong
@tirubhuwan6203 Жыл бұрын
Yes you are wrong
@JoyBoy_013 Жыл бұрын
I'm present Harry bhai
@dilipgurjar5181 Жыл бұрын
Thank you for this course
@DeepakKumar-sq8ei10 ай бұрын
very useful for my school parctile
@incredible4u872 Жыл бұрын
Day18 done
@Musicways0 Жыл бұрын
Present Harry bhai
@atharvsapale1734 Жыл бұрын
For step if we input (1,12,2)then out will 1+2=4 Then 4+2=6 That the use
@vinayakpawar-ju4eb Жыл бұрын
Hey Harry Vai Check Out This Code: n = int(input("Enter The Number: ")) while n != 1: if n % 2 == 0: n = n // 2 #floor division print(n) else: n = 3*n+1 print(n)