I am just disappointed why this channel hasnt got millions of subs ...This man makes time for us and works very hard so that learning to code will be very easy for us by giving notes projects and every code written in this course....Hats off to you Harry Bhai😊😊😊thank you so much for such amazing learning experience 5:51:35 Answer 3:- num = int(input("Enter your number")) i = 0 while i < 10: i = i+1 print(str(num) + "X" + str(i) + "=" + str(num * i))
4:34:20 (Chapter 6: conditional expressions). The output is greater. I also wrote a program.... "Wow, I've been following this Python course on UA-cam, and I can't express how incredibly helpful it's been for me. The way Harry explains complex concepts in such a clear and engaging manner is truly commendable. I've gained a solid understanding of Python thanks to this course. Thank you for putting in the effort to create such valuable content!"
Finally completed this tutorial after 8 days this was really amazing cant thank u enough. i understood all the concepts hopefully soon i can create projects on my own too answers list: 4:34:06 greater 5:04:58 username= input("enter username: ") if(len(username)
6:45:54 # Q4) Write a recursive function to find the sum of first n natural numbers def natural_num(i): return i * (i + 1)/2 n = int(input("Enter the value of n: ")) sum_natural_num = natural_num(n) print(f"The sum of n natural numbers is: {int(sum_natural_num)}") Thanks harry sir!!! Wrote my first function code by myself
I am just 14 years old and I started learning python from this course. I feel that it is the best course for me and you also share free handwritten notes for us (all peoples). I think that you can chase Alakh pandey really 😘🤩😍😃😇😀😉💪🤜🤛
Chapter 4 - Practice Set: 03:07:10 # Write a program to count the number of zeros in the following tuple: a = (7, 0, 8, 0, 0, 9) print(a.count(0)) run 3 Process finished with exit code 0 Thank you sir
@@anandraoo like first you choose a field like, data science, data analytics, or python developer. After that you will search about that domain on youtube you will find the complete roadmap of that domain which you choose. And learn those things
Guys' let's not forget he is IITians and he can earn in lakhs by utilizing his time but still he takes out some time to teach people like us in free of cost and also making notes for us which is also free . 'Hats off to you man'💜 and mad respect to you💜
3:19:36 Solution a = (7, 0, 8, 0, 0, 9) print(a.count(0)) By the way… Thank you Harry For your hardwork and patience throughout this whole python course and i really appreciate this python course video ❤️
Congratulations for written 1st python program to myself 1:36:54 I like this question infact after revising chapter I did complete 2nd assignment myself and i am proud of it 💜💜❤️❤️
5:10:17 it can also done like this for more accuracy grade =int(input("Enter your marks ")) if (grade>=90 and grade=80 and grade=70 and grade=60 and grade=50 and grade
1:37:49 A = input("You are asked to write the number of your desire: ") A = int(A) Square = (A * A) print("The Square number of your desire value are", Square) Thanks Harry Bro! I'm learning Python by your help
4:33:53 The value is greater. 5:05:20 Syntax: username = input("Enter your username") | if(len(username) < 10): print("Yes") else:print("not") 5:23:30 Ex:1 Ouput : Harry Harry Harry Harry Harry Q3. 5:51:40 n = int(input("Enter the number : ")) | a = 1 | while (a
5:05:25 Q 4 name = input("Enter your name ") if(len(name)10): print("name contain more than 10 charectors") else: print("name contain 10 charectors") # Full solution
Hey bro, there is two videos available of harry bhai on python 1st is itself 11.52 hrs long and 2nd is latest (1 month old) which is maybe 3 hrs long, do you have idea which one should i start learn with, i am complete begginer. Please tell.
@@kishanrajoriya2314 start with 11.52 hrs video bro for the complete understanding as the more time u give the more things will start getting clear with time. Also in this video the level starts increasing slowly in learn and practice format. After that u can go for the other video which have 5 projects to test yourself that how much u learned.
I have no word to thank you sir ek teacher kitna desperate ho sakta he students ko sikhane ke liye. Jab tak me ye coding ki dunya se jura rahunga tab tak apko yad rakhunga. Love you sir.
4:59:06 a = int(input("please enter the marks you got in english")) b = int(input("please enter the marks you get in maths ")) c = int(input("please enter the marks you get in sci")) if(a>40): print("you are passed in this exam") if(b>40): print("you are passed in this exam")
if(c>40): print("you are passed in this exam") elif(a>33): print("you are just passed") elif(b>33): print("you are just passed") elif(c>33): print("you are just passed") else: print("fail")
Hello harry Sir, I know its way late but yes. I am a mechanical engineer who ha no idea about coding but I really wanted to learn it for building my skills. And I really owe you a honest Thankyou for making out things so simple for me.
I am a Beginner, Today I have completed my fifth chapter , from 1st to 5th I never get bored. Thanks to harry🤓 using simple language to teach each and every one Free of Cost🤓🤓🤓🤓 thank you sir, Bass main esse jayda emphasis naahi kar sakta🙏🙏
I'm in 4th chapter, it's been only a few weeks I've started studying.Not a pro but I started understanding how the program works.After studying python and mastering it I will move on to more programming languages like C, C#, C++, Java, Javascript, PHP, Ruby, Go, and maybe more.All The Best.
@@vascinx3174 i think you should continue with python only or you may learn kotlin.. as it i one of the growing programming languages.. it will surely help your to get succes
3:19:43 Solution of Problem 5:- a=(7,0,8,0,0,9) print (a.count(0)) Output:- 3 Btw I love watching ur videos, they are so On point and i can easily understand the concept and easy for me to execute programs related to the concept... Thank you Harry Sir for teaching us💓💓
5:05:26 CHAPTER 6 PRACTISE SET QUESTION 4 ANS: username = input("Enter you name: ") chars = len(username) if(chars>10): print("This name have more than 10 alphabets") elif(chars==10): print("This name have 10 Alphabets") else: print("This name have less than 10 Alphabets")
6:52:06 multiplication table practice set 8 Q8--> def multiplicationTable(n): for i in range(1,11): print(f"{n}X{i}={n*i}") n = int(input("Enter Number Here: ")) multiplicationTable(n)
@@prateeksao3840 def mul(n): for i in range(1,11): print(f"{n}X{i}={n*i}") num = int(input("Enter the number:")) print(mul(num)) Output(For example of 2): 2X1=2 . . . . . . 2X10=20 𝗡𝗼𝗻𝗲 I'm getting none at the end of the output, that's what my doubt is
9:04:27 Best Python course for everybody... Love this course a lot that I give 5-6hours daily to it... And I guess I am gonna finish it within 1-2days.. I am here to know the syntax of PYTHON and the logic formation is something that would only get by creating Projects.. Thanks bro.. thanks a lot..
5:13:28 chapter 6: question 7 post=input("Enter the post ") post=post.upper() if "KUNTAL" in post: print("yes the post is talking about Kuntal") else: print("The post is not talking about Kuntal")
3:19:24 Harry, you are doing a great job. I am having a great time learning python via this session. First I was ignoring you asking for comments but now I actually realize the efforts you put in to this video just to make us learn. I don't if you'll be reading this comment now but you are actually doing a great job⭐👍. And, and the solution here is print(a.count(0)) 💫💫
Bhai ,magnet brains channel pe jao waha class 4-12 tak ka saara padhai free of cost. Physics wallah physics ka free of cost padhai , Aman dhattarwal leke aa rhe hai a new revolution
5:51:25 chapter 7 practice set question no. 3. Write a program to print the multiplication table of a given number using while loop. num=int(input("enter any number ")) i=1 while i
1:37:41 Square of a number : n = int(input("Enter the number: ")) print("The square of n is: ", n*n) 3:18:56 Count the number of zeroes : a = (7, 0,8,0,0,9) print(a.count(0)) Output :- 3 4:33:50 Greater 4:47:19 Is_else Optional 5:05:11 # Chapter-6 : (Question-4) name = input("Enter your name ") if(len(name)10): print("name present more than 10 characters") else: print("name present 10 characters") 5:13:30 # Chapter-6 : (Question-7) Ch = input ("Enter your name: ") if (ch >= "A" and ch="a" and ch For Loop] num = int(input("Enter the number")) for i in range(-11, 1): print(f"{num}X{-i} = {num*-i}") # chapter 8 - ( problem 4) 6:44:40 n = int(input("Enter the number ")) def sum(n): if n == 0: return 0 else: return n + sum(n-1) print(sum(n)) 6:48:08 def inch(cm) return (cm * 2.54) c = int(input("Inch: ")) f = inch(c) print("Centimeter is: ", str(f)) 11:04:15 Multilevel Inheritance
Starting this course on the first day of 2022 and I guess this is one of the best start i could ever hope for. Thanks for bringing us such an amazing course for free. I'll be back after finishing this course now..
@@gameajaye7925 it's like a motivation.. And starting the new year with learning something new is entirely a great feeling itself hopefully... I won't give up on my learning till the end of the year until I achieve what I want. And these courses make it easier.
@@azzayshakya Bro woh ek drive folder ke format mein khulegi, jiske andar saara content hai. Wha right side mein download ka option aata hai. Click karne ke baad download start ho jayega. Aur uske baad uss zip file ko unzip kardo
@@sakshivij5822 python interpretor select karo aur file name ke end mein .py likhdo, agar code sahi hai toh kaam karna chahiye print("Hello World") OR A="Hello World" print(A)
6:45:12 def sum(num): if num == 1 or num == 0: return 1 else: return num + sum(num-1) num = int(input("enter the value: ")) result = sum(num) print(f"The sum of the {num} natural number is {result}.")
05:13:24 Chapter 6 Practice set Question no. 7 :- post = input("Enter your post ") checkwith = "Harry" if checkwith.upper() in post.upper(): print("The above post is talking about Harry") else: print("The above post is not talking about Harry")
bro ye advanced level ka code kiya hai tume chapter 6 th tak ye harry sir ne upper lower jaise kuch sikhaya bhi nahi , nahi questionn koi alag se post input krne ko bola hai simple coding hai ek post banao aur if else use kro baki kuch nahi bola sir ne
@@pankaj.padekar Checkwitht is a variable not a statement Here is an example of code:- post = input("Enter your post ") name = "Harry" if name.upper() in post.upper(): print("The above post is talking about Harry") else: print("The above post is not talking about Harry") ----------> You can write anything as a variable if you are confusing in checkwith (variable)
5:05:17 username = input("Enter your username:- ") print(len(username)) if(len(username) < 10): print("It is less than 10") else: print("It is more than 10") O/P Enter your username:- CodeWithHarry 13 It is more than 10
1:38:55 enjoying the course a lot and learning slowly but steadily. I feel happy that once I complete this course I will be able to use python in my field of interest, i.e. engineering
5:00:29 we can also use a = int(input("Enter Your marks of Maths (out 0f 100): ")) b = int(input("enter marks of english (out 0f 100): ")) c = int(input("enter marks of physics (out 0f 100): " )) d = a+b+c/300 if (a>=33.33 and b>=33.33 and c>=33.33 and d>=40 ): print("Congratulation! You passed the exam") else: print("Sorry, You failed the exam") 5:05:20 a = input("Enter the user name: ") b = len(a) if(10>=b): print("Length is perfect") else: print("sorry length is too small")
20:25 congratulations to me for my first python code 🎉 59:20 ni bro Kisi Ka name number se to ni suna 😂 2:07:40 bilkul Sahi h verified 👍 2:25:27 billo 😂😂 2:32:36 Dear Harry this python course is very very nice 3:08:26 boht achcha Kiya Harry bro Aapne sab Kuch itna arranged way me it's awesome ❤️💖 3:19:10 count wala use karenge easy 😁 3:58:41 vastu is object not item 😐😂 4:06:55 dono hi aane chahiye mere according to🤔 4:33:43 greater aayega 😀 4:47:21 yes 'else' is optional 😁 5:23:30 Harry Harry Harry Harry Harry 5:25:34 I eat all of them 😂 6:07:14 range(11, 1) 👍 6:13:17 laut chalo is value ke saath 7:16:35
4:07:11 Both of the datatypes will be printed. 5:05:25 # Creating a program to know whether a username contains more than 10 characters or not. username = input("Enter your name: ") chars = len(username) if (chars>10): print("Your username contains more than 10 characters i.e",chars) elif (chars
Udemy:- ''Learn python basics for just 500 rupees!!!!" Harry Bhai:- Teaches python from a to z. Udemy's reaction:- 😱😱😱 Thank you Harry bhai for many awesome tutorials. Just because of you I learned machine learning in python for free from the machine learning playlist. I also learned python from the 1 hour python video that you uploaded before. Thank you so much!!!!!!! You deserve millions of subscribers.
This python course is really helpful.I watched both the parts of this course and now I am watching your django course to start web development in python.
@@seemadesai7876 so u are done with all python basics ? and now u are on web development?was this couse helpful and how much time it took for you to complete both videos?
Best and simple approach is to change in the range function as it allows to iterate in reverse order as well Just like all the same code just change in the range function like : Num : int ( input(“Enter a number”) For i in range (10,0,-1 ) Print(f”{num}X{i}={num*i}”) Simple!
1:37:05 I liked the question and I'm happy that I solved that the exact same way that you did. Also I practiced all the questions of this particular exercise in VS code
Finally! I completed the course i just don't believe that i learn all core python by this amazing & enjoying way! thanks yrr... for this amazing video!
The most hardworking UA-camr of the year award is goes to this man.. totally unimaginable...❤️❤️ Thanku so much ... After one month of internship in Hyderabad i dont know how to print Hello world in python... But after this video I'm able to do 50% of python coding
4:34:04 Output: Greater 4:34:42 Program: a=int(input("Enter the age :")) if(a>18): print("Entered age is great than 18") elif(a==18): print("Entered age is 18") else: print("Enter age is less than 18") 5:05:44 Program: a=str(input("Enter the charcter:")) if(len(a)>10): print("The username has more than 10 letters") else: print("The username is less than 10 letters") 5:50:00 num=int(input("Enter the number : ")) i=1 while i
Never thought that an educational video like this would get 22M views 😍😍😍😍😍😍
Thanks for all the love and support
Hello Harry Sir😄
?????x?x?x?x???!
Aa
A
A
I am just disappointed why this channel hasnt got millions of subs ...This man makes time for us and works very hard so that learning to code will be very easy for us by giving notes projects and every code written in this course....Hats off to you Harry Bhai😊😊😊thank you so much for such amazing learning experience
5:51:35 Answer 3:-
num = int(input("Enter your number"))
i = 0
while i < 10:
i = i+1
print(str(num) + "X" + str(i) + "=" + str(num * i))
also
print(f"{num} X {i} = {num*i}")
Ma k lawde 3 milliln hai uske
jalwa hai Harry bhai ka #codewithharry😄
4:34:20 (Chapter 6: conditional expressions). The output is greater. I also wrote a program.... "Wow, I've been following this Python course on UA-cam, and I can't express how incredibly helpful it's been for me. The way Harry explains complex concepts in such a clear and engaging manner is truly commendable. I've gained a solid understanding of Python thanks to this course. Thank you for putting in the effort to create such valuable content!"
kitna rupee tel laga rha hai bhai
Finally completed this tutorial after 8 days this was really amazing cant thank u enough. i understood all the concepts hopefully soon i can create projects on my own too
answers list:
4:34:06 greater
5:04:58
username= input("enter username: ")
if(len(username)
05:05:00
name = input("Enter your UserName: ")
if(len(name))
did you solve q7 of this chapter?
5:05:18
name=input("Enter username
")
if(len(name)>10):
print("username can't be greater than 10")
Thank you very much for the course bhaai
3:19:36
a=(7,0,8,0,0,9)
k= a.count(0)
print(k)
Output - 3
This course is nice Harry sir ❤️
thanku so much
6:45:54 # Q4) Write a recursive function to find the sum of first n natural numbers
def natural_num(i):
return i * (i + 1)/2
n = int(input("Enter the value of n: "))
sum_natural_num = natural_num(n)
print(f"The sum of n natural numbers is: {int(sum_natural_num)}")
Thanks harry sir!!! Wrote my first function code by myself
5:05:30
username = input ("Enter username:
")
character = len (username)
if (character
Bro these program had error because you are not typecast the string
ua-cam.com/channels/vcRbSedh-r0gGDYxo5IgjQ.html
@@masoodalishaik but username is in string then why to typecast?
5:05:00
☺is it right sir ?
Qn. 4.
n=input("Enter Your Name:
")
length=len(n)
if(length
I know nothing about python without it's name can I watch or learn from this video
@@sidhuvines9789 easily bro.....if u haven't even done programming in your life...u will still find this course super easy.👍👍go for it
@@saurabhtamta7295 thanks ❤️
@@sidhuvines9789 Yes, Bro
Bhai jo python ka print function h Agar hum game ya koi app Bana rahe h toh print function kaha use hoga ? Koi help krdo
5:51:27 :
Multiplication table of a given number using while loop :
num=int(input("Enter the number :
"))
i=0
while (i
python ch 1 intro = ua-cam.com/video/Fj4uf3qo3Ew/v-deo.html
Hy bro..
you can take i=1 , instead of i = 0
because we generally not start our table with 0.
@@HarshSharma-et5jq 😅
i = 1
num = int(input("enter a number
"))
while i
I am just 14 years old and I started learning python from this course. I feel that it is the best course for me and you also share free handwritten notes for us (all peoples). I think that you can chase Alakh pandey really 😘🤩😍😃😇😀😉💪🤜🤛
5:05:10
name = input("Enter your name : ")
a = len(name)
print("length of this name is " + str(a))
if(a
Chapter 4 - Practice Set: 03:07:10
# Write a program to count the number of zeros in the following tuple:
a = (7, 0, 8, 0, 0, 9)
print(a.count(0))
run
3
Process finished with exit code 0
Thank you sir
How to download?
@@AmiralikhanECL Gadha kahi ka
6:07:15 reverse multiplication table:
num=int(input("Enter the number: "))
for i in range(10,0,-1):
print(str(num)+" X "+str(i)+" = "+str(num*i))
3rd 1w7221
Nathji(*-+×:×)/:;_&₹~Jai Mata Di. ;₹+×÷₹/{~{'{×÷)/_.
@Bhoodev Singh 😀😀😀
Hum ne to sikha tha, lekin saale ne apply kiya😂
Good Job Man
1:37:27
a=input("Enter a number to find out square:")
a=int(a)
square=a*a
print("Square of user input number ", square)
6:06:50
Most easy way👇
n=int(input("Enter the number"))
for i in range(1,11):
print(f"{n}X{11-i}={n*(11-i)}")
Is this video is enough for any person seeking for job in IT sector
@@anandraooNo you have to learn some other things also
@@NeonBoy02 like?
@@anandraoo like first you choose a field like, data science, data analytics, or python developer. After that you will search about that domain on youtube you will find the complete roadmap of that domain which you choose. And learn those things
@@NeonBoy02 ohk means first I have to do this then choose a field after that complete study about that perticular field
5:05:10
4th assignment
string = input("Enter your name
: ")
if(len(string)
thanks man
@@Aditya-xg6er mention not bro
This is a great python tutorial video on youtube
Guys' let's not forget he is IITians and he can earn in lakhs by utilizing his time but still he takes out some time to teach people like us in free of cost and also making notes for us which is also free . 'Hats off to you man'💜 and mad respect to you💜
Bro how to download python hand written notes
@@rohinik15 bhai talented log generally don't do regular/common jobs...they have something in them which makes them unique
But still he is earn more than lakh from youtube and there website so it's pretty good to do a job or anythingelse
Hatts of sir
@@rohinik15 IIT KHARAGPUR
3:19:36
Solution
a = (7, 0, 8, 0, 0, 9)
print(a.count(0))
By the way… Thank you Harry For your hardwork and patience throughout this whole python course and i really appreciate this python course video ❤️
Good
5:05:57
Cho 6:-practice set
Pr no :4
Username=input("enter your name")
a=len(Username)
If a
😘
🥰👏
thanks a lot brother for replying....❤
bro have you completed this course?
how much you get ot know about python?
Congratulations for written 1st python program to myself
1:36:54 I like this question infact after revising chapter I did complete 2nd assignment myself and i am proud of it 💜💜❤️❤️
Congratulations to myself for writing my 1st program in Python*
@@aniketsarode169 me too
6:7:19 number = int(input("ener a number -> "))
for i in range(10 , 0 , -1):
print(str(number) + " x " + str(i) + " = " + str(i*number))
5:05:18
str = input("Enter your username : ")
if(len(str)
yes
5:10:17 it can also done like this for more accuracy
grade =int(input("Enter your marks
"))
if (grade>=90 and grade=80 and grade=70 and grade=60 and grade=50 and grade
He is Alakh pandey for engineering student💓😍
are you doing iit
@@sM1LeY2409 shut up
@Destiny_YT what is the fee there
Exactly.. Alak sir iit.. Harry sir.... Programming... 😉
Right
1:37:49
A = input("You are asked to write the number of your desire: ")
A = int(A)
Square = (A * A)
print("The Square number of your desire value are", Square)
Thanks Harry Bro! I'm learning Python by your help
yhi likhne wala tha
Same
My code:-
a=input(Enter a number to obtain its square.)
b=a*a
print(b,"is the square of",a.)
Chapter 8 6:45:19
n= int(input("Enter the value of n is "))
def sum(n):
if n==1:
return 1
return sum(n-1) + n
s = sum(n)
print(s)
python ch 1 intro = ua-cam.com/video/Fj4uf3qo3Ew/v-deo.html
Thx
6:48
def inches(n):
return(n*2.54)
c=int(input('enter inch :'))
f=inches(c)
print('cm is:
' + str(f))
harry bhai ka jalwaa🔥
luv you bhai❤
4:33:53 The value is greater.
5:05:20 Syntax: username = input("Enter your username") | if(len(username) < 10): print("Yes") else:print("not")
5:23:30 Ex:1 Ouput : Harry Harry Harry Harry Harry
Q3. 5:51:40 n = int(input("Enter the number : ")) | a = 1 | while (a
bro your 5:23:30 code was wrong i tried to correct it.
n = int(input("Enter the number : "))
a = 1
while (a
5:05:25
Q 4
name = input("Enter your name
")
if(len(name)10):
print("name contain more than 10 charectors")
else:
print("name contain 10 charectors")
# Full solution
Thnx bro
There are very less youtubers like you who are teaching python for real life problems
Thank you sir
Congratulations
real hero
@@B-TanmayRawat hello 🙏
Time Stamps:
Course Logistics: 00:00:00
Chapter 0 - Introduction: 00:08:58
Chapter 1 - Modules, Comments & Pip: 00:14:17
Chapter 1 - Practice Set: 00:33:10
Chapter 2 - Variables & Data Types: 00:44:35
Chapter 2 - Practice Set: 01:25:10
Chapter 3 - Strings: 01:39:10
Chapter 3 - Practice Set: 02:16:56
Chapter 4 - Lists & Tuples: 02:35:04
Chapter 4 - Practice Set: 03:07:10
Chapter 5 - Dictionary & Sets: 03:20:12
Chapter 5 - Practice Set: 03:57:25
Chapter 6 - Conditional Expressions: 04:19:21
Chapter 6 - Practice Set: 04:48:53
Chapter 7 - Loops in Python: 05:14:34
Chapter 7 - Practice Set: 05:45:11
Chapter 8 - Functions & Recursion: 06:07:35
Chapter 8 - Practice Set: 06:36:28
Project 1 - Snake, Water, Gun Game: 06:52:30
Chapter 9 - File I/O: 07:06:55
Chapter 9 - Practice Set: 07:28:11
Chapter 10 - Object Oriented Programming: 08:08:38
Chapter 10 - Practice Set: 09:17:22
Chapter 11 - Inheritance: 09:48:30
Chapter 11 - Practice Set: 10:55:24
Project 2 - The Perfect Guess 11:37:01
Hey bro, there is two videos available of harry bhai on python 1st is itself 11.52 hrs long and 2nd is latest (1 month old) which is maybe 3 hrs long, do you have idea which one should i start learn with, i am complete begginer.
Please tell.
@@kishanrajoriya2314 start with 11.52 hrs video bro for the complete understanding as the more time u give the more things will start getting clear with time. Also in this video the level starts increasing slowly in learn and practice format. After that u can go for the other video which have 5 projects to test yourself that how much u learned.
@@kishanrajoriya2314 yes bro... @rohitkumar is right...1st you should start 11hr's video then for practice purpose watch 3hr video...
@@RohitKumar-mz2iw Thanks bro, for writing detailed answer for my better understanding.
@@surajmagdum8501 Thanks bro
I have no word to thank you sir
ek teacher kitna desperate ho sakta he students ko sikhane ke liye. Jab tak me ye coding ki dunya se jura rahunga tab tak apko yad rakhunga. Love you sir.
MATLAB tum Kuch din ke Lia Kia coding Sik rahaho ? Jo bol Raha ho ki jab tai me ye coding .......
4:59:06
a = int(input("please enter the marks you got in english"))
b = int(input("please enter the marks you get in maths "))
c = int(input("please enter the marks you get in sci"))
if(a>40):
print("you are passed in this exam")
if(b>40):
print("you are passed in this exam")
if(c>40):
print("you are passed in this exam")
elif(a>33):
print("you are just passed")
elif(b>33):
print("you are just passed")
elif(c>33):
print("you are just passed")
else:
print("fail")
Oh bhai
@EISHA THAKUR from second line onwards after if you start with elif,elif ar else it will show an error
Hello harry Sir,
I know its way late but yes. I am a mechanical engineer who ha no idea about coding but I really wanted to learn it for building my skills. And I really owe you a honest Thankyou for making out things so simple for me.
Did you change your from mechanical to IT?
3:19:05 - Solution of 5th Question -> print(a.count(0)) and Output = 3. Amazing Session ☺
I am a Beginner, Today I have completed my fifth chapter , from 1st to 5th I never get bored. Thanks to harry🤓 using simple language to teach each and every one Free of Cost🤓🤓🤓🤓 thank you sir, Bass main esse jayda emphasis naahi kar sakta🙏🙏
What's u r age bro
31
I'm in 4th chapter, it's been only a few weeks I've started studying.Not a pro but I started understanding how the program works.After studying python and mastering it I will move on to more programming languages like C, C#, C++, Java, Javascript, PHP, Ruby, Go, and maybe more.All The Best.
@@vascinx3174 i think you should continue with python only or you may learn kotlin.. as it i one of the growing programming languages.. it will surely help your to get succes
Please tell someone how to download notes🙏🙏🙏🙏
Dil se shukriya Harry sir ..love u 3000💖💖💖
2:35:07
I love u infinity
Endgame iron man
@@shrijalpatel4467 Avengers endgame ka dialogue hai.
Where is library management system in advance python?
6:06:46
n = 3
for i in range(1,n+1):
if i ==1 or i==3:
print("***")
else:
print("* *")
3:19:43
Solution of Problem 5:-
a=(7,0,8,0,0,9)
print (a.count(0))
Output:-
3
Btw I love watching ur videos, they are so On point and i can easily understand the concept and easy for me to execute programs related to the concept...
Thank you Harry Sir for teaching us💓💓
5:05:26 CHAPTER 6 PRACTISE SET QUESTION 4
ANS:
username = input("Enter you name:
")
chars = len(username)
if(chars>10):
print("This name have more than 10 alphabets")
elif(chars==10):
print("This name have 10 Alphabets")
else:
print("This name have less than 10 Alphabets")
Huge respect
thanks
Thanks
6:52:06 multiplication table practice set 8 Q8-->
def multiplicationTable(n):
for i in range(1,11):
print(f"{n}X{i}={n*i}")
n = int(input("Enter Number Here: "))
multiplicationTable(n)
after n*10 it is returning a 'None", any fix?
@@pablochocobar4297 show your complete code plz
@@prateeksao3840
def mul(n):
for i in range(1,11):
print(f"{n}X{i}={n*i}")
num = int(input("Enter the number:"))
print(mul(num))
Output(For example of 2):
2X1=2
.
.
.
.
.
.
2X10=20
𝗡𝗼𝗻𝗲
I'm getting none at the end of the output, that's what my doubt is
ua-cam.com/video/a8QLa1WRt7g/v-deo.html
@@pablochocobar4297 same error I am also getting
5:51:34
num=int(input("The table of the number is
"))
i=1
while i
5:05:18
text = input("Enter the username:
")
if (len(text)
Code with Harry > whitehatjr am I correct hit like.
Thanks for this much like I am shocked
1k like woow
Yep you are correct
Yeah Boi
Yup, you are right.
right
No WhiteHatJr is different. WhiteHatJr also allows to publish your app on google play for free.
9:04:27
Best Python course for everybody...
Love this course a lot that I give 5-6hours daily to it... And I guess I am gonna finish it within 1-2days.. I am here to know the syntax of PYTHON and the logic formation is something that would only get by creating Projects.. Thanks bro.. thanks a lot..
@athul udaycan I see the code?
@athul uday In most of the case it works fine..
@athul uday In short way.. I can show you my code..
@athul uday remember to use double \
ather using \
@athul uday i think its an indent error but if you can show the output then it would be easier to help you.-.
The guy is working hard everyday to make learning easy for us. I have never seen such a great guy 😢 in my life 🙌. You Deserve Millions of Subs ❤
Yes ,he diserve that
@@yadvendragurjar7153 you're absolutely right bro
@@niladriroy1665 start with "python" because python is easy to learn and Faster to complete.. bro
@@niladriroy1665 yes, definitely bro .. because c language is helpful to develop device drivers, back end networking and games
He deserves 100000000000000000000^1000000000000000000000000000000 subscribers
5:13:28
chapter 6: question 7
post=input("Enter the post
")
post=post.upper()
if "KUNTAL" in post:
print("yes the post is talking about Kuntal")
else:
print("The post is not talking about Kuntal")
thank you
this was a good one
@@sawerashehzadi323 are you a beginner?
@@imranabbas1786 yes, i started the course 5 days ago..
1 hour per day
@@sawerashehzadi323 so are you in university or doing the course for knowledge?
3:19:24
Harry, you are doing a great job. I am having a great time learning python via this session.
First I was ignoring you asking for comments but now I actually realize the efforts you put in to this video just to make us learn.
I don't if you'll be reading this comment now but you are actually doing a great job⭐👍.
And, and the solution here is
print(a.count(0))
💫💫
World :- nothing is free
Harry :- 😂😂 everything is free in Harry's worlds .
Thanks Harry bhai 👍
Shi hai bhai
Very true
Bhai ,magnet brains channel pe jao waha class 4-12 tak ka saara padhai free of cost.
Physics wallah physics ka free of cost padhai , Aman dhattarwal leke aa rhe hai a new revolution
really
Respect
This Python course Is Really Helpful Thank You harry bro...
Have u downloaded the notes
Can u plz help me how to download it...
It's not opening
@@praveennooka675 mine are working
Please tell me step wise
For me after downloading from Google drive its coming "this file is unsupported"
5:51:35
num = int(input("Enter a number
"))
i = 7
while True:
print(f"{num}x{i} = {num * i}")
i = i+1
if(i == 19):
break
else:
print("Done")
5:51:25
chapter 7 practice set question no. 3.
Write a program to print the multiplication table of a given number using while loop.
num=int(input("enter any number
"))
i=1
while i
Bhai dil to diya nhi Harry ne
@@gelectiusdroid4147 Bhai 73000 lok me se upko dill kaise dega😂😂😂
@@ryomengordon mujhe dil chahiye bhi nhi.
1:37:41
Square of a number :
n = int(input("Enter the number: "))
print("The square of n is: ", n*n)
3:18:56
Count the number of zeroes :
a = (7, 0,8,0,0,9)
print(a.count(0))
Output :- 3
4:33:50
Greater
4:47:19
Is_else Optional
5:05:11
# Chapter-6 : (Question-4)
name = input("Enter your name
")
if(len(name)10):
print("name present more than 10 characters")
else:
print("name present 10 characters")
5:13:30
# Chapter-6 : (Question-7)
Ch = input ("Enter your name:
")
if (ch >= "A" and ch="a" and ch For Loop]
num = int(input("Enter the number"))
for i in range(-11, 1):
print(f"{num}X{-i} = {num*-i}")
# chapter 8 - ( problem 4)
6:44:40
n = int(input("Enter the number "))
def sum(n):
if n == 0:
return 0
else:
return n + sum(n-1)
print(sum(n))
6:48:08
def inch(cm)
return (cm * 2.54)
c = int(input("Inch: "))
f = inch(c)
print("Centimeter is: ", str(f))
11:04:15
Multilevel Inheritance
Did u learn this just by watching this single video?
@@snivin5618 nope. Copied from the net...
3:18:56
a=(7,0,8,0,0,9)
a.count(0)
Output= 3
It will work on Python IDLE
ua-cam.com/video/59AtgPRd720/v-deo.html
Reverse multiplication table
#USING FOR LOOP:
number=int(input("enter a num: "))
for i in range (-10,0):
i=abs(i)
print(f"{number}X{i}={number*i}")
5:05:16
name = input("enter name bro
")
if(len(name)
nice bro
@@mohdaman5928 if else toh easy hai. For loop and nested mein phat jatti hai😂
Bro ye program pehle hi crash ho jayega kyuki tumne if(len(name)
5:56:20
num = int(input("Enter a num :
"))
sum = 0
for i in range (0, num+1):
sum = sum+i
print(f"The sum of natural number {num} is : {sum}")
5:05:09 use len function to calculate the length of string(username) and apply conditionals to print out the desired result.
This guy is taking more effort to make the students and professionals to understand new languages...Hats off to you Harry..You are truly a gem...
Starting this course on the first day of 2022 and I guess this is one of the best start i could ever hope for. Thanks for bringing us such an amazing course for free. I'll be back after finishing this course now..
I also started on 2022 first January
@@gameajaye7925 it's like a motivation.. And starting the new year with learning something new is entirely a great feeling itself hopefully... I won't give up on my learning till the end of the year until I achieve what I want. And these courses make it easier.
I also
Can any one of you please help me to install python in my laptop(win10)
@@AmitAmit-kv5zv follow the same steps as harry bhai did.
6:07:11
num = int(input("Enter the number for table creation in reverse:"))
for i in range(10, 0, -1):
print(num * (i))
3:19:37 a.count(0)
4:34:25 greater
4:47:23 else optional
5:05:10 if len(name) < 10:
Print ('less charector ')
9:04:28 great course
9:15:00 init then get details
10:07:51 error
can uh pls tell me how to downlaod the solved problems which he had solved on screen
Nice comment thanks!, helped @5:05:10
i did not solve chapt 6 practice set question 7 if you have answer so kindly resolve
@@everhealthfacts7823 let me know if you find the answer lol. Same problem
koi chapter 6 ki question 7 ka answer janta h kya? batana zara yaar
this guy is making this payable content free and making the life of people better by giving it free publicly. HATS OFF to him
Bhai file shi se download nhi ho rhi hai ,,kya kro ,please reply 😔😔
@@azzayshakya Bro woh ek drive folder ke format mein khulegi, jiske andar saara content hai. Wha right side mein download ka option aata hai. Click karne ke baad download start ho jayega. Aur uske baad uss zip file ko unzip kardo
@@Aditya-yx9qx Bhai mai nai hello world sahi likha tab bhi incorrect dikha raha plz help
@@sakshivij5822 python interpretor select karo aur file name ke end mein .py likhdo, agar code sahi hai toh kaam karna chahiye
print("Hello World") OR
A="Hello World"
print(A)
Sir kya window 7 me python run ho sakta hai
6:45:12
def sum(num):
if num == 1 or num == 0:
return 1
else:
return num + sum(num-1)
num = int(input("enter the value: "))
result = sum(num)
print(f"The sum of the {num} natural number is {result}.")
a = int(input("Enter an integer number"))
print("the square of integer number is", a*a)
05:13:24 Chapter 6 Practice set Question no. 7 :-
post = input("Enter your post
")
checkwith = "Harry"
if checkwith.upper() in post.upper():
print("The above post is talking about Harry")
else:
print("The above post is not talking about Harry")
Thank broo
Welcome
bro ye advanced level ka code kiya hai tume chapter 6 th tak ye harry sir ne upper lower jaise kuch sikhaya bhi nahi , nahi questionn koi alag se post input krne ko bola hai
simple coding hai ek post banao aur if else use kro baki kuch nahi bola sir ne
@@pankaj.padekar Checkwitht is a variable not a statement
Here is an example of code:-
post = input("Enter your post
")
name = "Harry"
if name.upper() in post.upper():
print("The above post is talking about Harry")
else:
print("The above post is not talking about Harry")
----------> You can write anything as a variable if you are confusing in checkwith (variable)
@@funwithfafzu6226 got it thankd
5:05:17
username = input("Enter your username:- ")
print(len(username))
if(len(username) < 10):
print("It is less than 10")
else:
print("It is more than 10")
O/P
Enter your username:- CodeWithHarry
13
It is more than 10
str.len aana chahiye shayad🧐
Such a small stupid program
Bro isme error h,, plz koi iska sahi code batao
9:04:34 This is the perfect python course. Thank you Harry Bhai❤️
1:38:55 enjoying the course a lot and learning slowly but steadily. I feel happy that once I complete this course I will be able to use python in my field of interest, i.e. engineering
bro go fast, starting is very easy! all the best
5:59:46 a=int(input('enter the number of
'))
b=1
for i in range(1,a+1):
b*=i
print(f'the factiroal of {a} is {b}')
Harry's way of speaking 'bahut' is 🔥🔥🔥
- bahooot easy hai
5:00:29
we can also use
a = int(input("Enter Your marks of Maths (out 0f 100):
"))
b = int(input("enter marks of english (out 0f 100):
"))
c = int(input("enter marks of physics (out 0f 100):
" ))
d = a+b+c/300
if (a>=33.33 and b>=33.33 and c>=33.33 and d>=40 ):
print("Congratulation! You passed the exam")
else:
print("Sorry, You failed the exam")
5:05:20
a = input("Enter the user name:
")
b = len(a)
if(10>=b):
print("Length is perfect")
else:
print("sorry length is too small")
I thought the same
🤡
d=(a+b+c)/3
Hn bhai ne 'Or' kyu lgaya and ayega,all subject me pas hona complsry h
@@dishadugad8675 setting krle
This guy just deserves all the respect 💯 .. words are not enough to thank him ..🙏 Thanks a ton
ch - 2 problem 6
a = input("enter a number: ")
a = int(a)
print("the square of the number is: ", a*a)
5:05:56 Q4)- a = input("enter the username :")
b = (len(a))
if(b
Thnx for the help I also made my program using ur code but made few changes thnx it worked
20:25 congratulations to me for my first python code 🎉
59:20 ni bro Kisi Ka name number se to ni suna 😂
2:07:40 bilkul Sahi h verified 👍
2:25:27 billo 😂😂
2:32:36 Dear Harry this python course is very very nice
3:08:26 boht achcha Kiya Harry bro Aapne sab Kuch itna arranged way me it's awesome ❤️💖
3:19:10 count wala use karenge easy 😁
3:58:41 vastu is object not item 😐😂
4:06:55 dono hi aane chahiye mere according to🤔
4:33:43 greater aayega 😀
4:47:21 yes 'else' is optional 😁
5:23:30
Harry
Harry
Harry
Harry
Harry
5:25:34 I eat all of them 😂
6:07:14 range(11, 1) 👍
6:13:17 laut chalo is value ke saath
7:16:35
Wow man god
👊🏻
Hello
@@user-ev9wr6md7z hello
5:51:27 num = int(input("Enter a nunber
"))
i=1
while i
►TimeStamps:
Course Logistics: 00:00:00
Chapter 0 - Introduction: 00:08:58
Chapter 1 - Modules, Comments & Pip: 00:14:17
Chapter 1 - Practice Set: 00:33:10
Chapter 2 - Variables & Data Types: 00:44:35
Chapter 2 - Practice Set: 01:25:10
Chapter 3 - Strings: 01:39:10
Chapter 3 - Practice Set: 02:16:56
Chapter 4 - Lists & Tuples: 02:35:04
Chapter 4 - Practice Set: 03:07:10
Chapter 5 - Dictionary & Sets: 03:20:12
Chapter 5 - Practice Set: 03:57:25
Chapter 6 - Conditional Expressions: 04:19:21
Chapter 6 - Practice Set: 04:48:53
Chapter 7 - Loops in Python: 05:14:34
Chapter 7 - Practice Set: 05:45:11
Chapter 8 - Functions & Recursion: 06:07:35
Chapter 8 - Practice Set: 06:36:28
Project 1 - Snake, Water, Gun Game: 06:52:30
Chapter 9 - File I/O: 07:06:55
Chapter 9 - Practice Set: 07:28:11
Chapter 10 - Object Oriented Programming: 08:08:38
Chapter 10 - Practice Set: 09:17:22
Chapter 11 - Inheritance: 09:48:30
Chapter 11 - Practice Set: 10:55:24
Project 2 - The Perfect Guess 11:37:01
@@sudeep246 lol its there in description too
Thank u💜💜
Magar iski zarrorat nahi thi😂😂
@@zemtex77 He just copy pasted it from the description 😂
Thanks 😊 chapter 1 complete ...congratulations 33:00 min
Thanks 😊 chapter 1 complete ...congratulations 33:00 min
reverse order for 5 table
num = int(input("Enter the number
"))
m=11
for i in range(1,11):
print(f"{num} X {m-1} = {num*(m-1)}")
m=m-1
If anyone want to start a career in programming, this course is really helpful. I really appreciate your efforts Harry
I m really looking forward to go with programming... Just worried k would i be able to remember all the codes.. 😅😅
@@theescanor8985 it is easy. You can do it
@@SpectreKritical thnk u bhai
Is this enough to get any entry level coding job??
Can any graduate can do programming job after just learning skills & not degree?!
5:23:18
i = 0
while i < 5:
i = i + 1
print("Harry is legend")
output:
Harry is legend
Harry is legend
Harry is legend
Harry is legend
Harry is legend
It will only give output 4 times not five times
There are very less youtubers which teach the students in online mode by giving hand written notes and without cost.
THANK YOU SIR
AGREE
can u plz tell me from where can I download the notes? not getting any link to download
39:35 p samaj nahi aya kis tarah file save ki sir na.... Kia ap giade kar sakte ha mujhe plz
@@ritikaverma2039 even am not getting the notes but in description i got the link ill mail you d link
@@ritikaverma2039 the link is in the description... Its a zip file so u have to extract it
4:07:11
Both of the datatypes will be printed.
5:05:25
# Creating a program to know whether a username contains more than 10 characters or not.
username = input("Enter your name:
")
chars = len(username)
if (chars>10):
print("Your username contains more than 10 characters i.e",chars)
elif (chars
Hey bro! Thanks for helping me in some of the codes. Literally, no one has completed the homework except you.
Best regards
Unknown
Thanks bro 🎉
His content is evergreen. People will watch it for years.
you mean centuries
@@SushilSingh-fb7of python ka naya version aa jayega
@@sauravsharma8461 killed it man
@@sauravsharma8461 to?
@@sauravsharma8461 basic to vahi rahenga
I was revising python concepts after months and you made it so simple yet understandable !!! Thank you so much Harry Bhai
Bhai mujhe dqqt aari h installation m plz help m
best ever python coach.he is explaining very clearly.
pdf kese download hogi
6:45:27
def sum_of_integer(n):
if n
The best Python video on youtube. Great work indeed.
truly said
When I Open Powershell and type Python I am reditected To Microsoft Store
@@liltej356 is your problem fixed now ??
How to download material please tell
can any1 tell me plzzz dat should i go thru his previous video on python tutorials or dis video is sufficient...m a beginner
Udemy:- ''Learn python basics for just 500 rupees!!!!"
Harry Bhai:- Teaches python from a to z.
Udemy's reaction:- 😱😱😱
Thank you Harry bhai for many awesome tutorials. Just because of you I learned machine learning in python for free from the machine learning playlist. I also learned python from the 1 hour python video that you uploaded before. Thank you so much!!!!!!! You deserve millions of subscribers.
This course is super haary bhai
Pls harry bhai make. A course or road map to become master in video editing .
@umair khan Useful nai Bohot useful hai
@@chiku.2006 bro can u suggest which tutorial i need follow..
henry 12 hour tutorial or absolutely beginners short henry tutorial..i am new into these
Soon he reach 1 million
@@clot27 yeah now it's 700k
This python course is really helpful.I watched both the parts of this course and now I am watching your django course to start web development in python.
have u completed full 11 hours course??
@@aikansh7525 yes and also the part 2 of the video
@@seemadesai7876 so u are done with all python basics ? and now u are on web development?was this couse helpful and how much time it took for you to complete both videos?
@@seemadesai7876 yes l have started this course 12 days ago and now l am on chapter 5
@@ameenkazi4646 can you please share the link of part 2
6:06:48
num=int(input("Enter the number
"))
for table in range(1,11):
i=11-table
print(f"{num}X{i}={num*i}")
python ch 1 intro = ua-cam.com/video/Fj4uf3qo3Ew/v-deo.html
Best and simple approach is to change in the range function as it allows to iterate in reverse order as well
Just like all the same code just change in the range function like :
Num : int ( input(“Enter a number”)
For i in range (10,0,-1 )
Print(f”{num}X{i}={num*i}”)
Simple!
@@rohabamir7509thnks bro
This guy is a real legend, who is helping youngsters and professionals who are looking to build their career.. *Hands Off Brother* --> Take a Bow..
@@ABDULHAQ-dg4pl Posted
It's not "HANDS off" It's HATS OFF 😂😂
Lol
Hey harry bhai ne jo files di hai wo kaha milegi mujhe plz koi batayega ?
40:25
how was he able to pause the song or that sound
1:37:40 practice sheet is helpful
Q.7 - a = Input ( " Enter a number: " )
a = int(a)
b = a * a
print (b)
I did same 😅
@Unknown Know ye bhi theek hai
Nice
Are you learn all basic python
Jada BDE number ka square nhi aarha h like 25 ,can anyone explain y??
6:45:42
def nat_sum(n):
if (n==0):
return 0
else:
return (n + nat_sum(n-1))
a= nat_sum(10)
print(a)
1:37:05 I liked the question and I'm happy that I solved that the exact same way that you did. Also I practiced all the questions of this particular exercise in VS code
Ans kya aya 2*2 4 ?
@@swastikdas1497 I didn't get what you said bro
@@ashishvyas7409 can u pls give me the ans of ch 2 set q6
Finally! I completed the course i just don't believe that i learn all core python by this amazing & enjoying way! thanks yrr... for this amazing video!
I am learning.
Kya iske notes hoge kisi ke pass ho toh mujhe send kar do sis
chapter-7 , 9th ans anyone know's? if you know then please write It in the comment box
I also want scanned notes, if you have kindly share with us PLS
Ha yrr kisi ke pass ho
I also need notes
5:51:38
number=int(input("Enter the number"))
i=1
while i
The most hardworking UA-camr of the year award is goes to this man.. totally unimaginable...❤️❤️ Thanku so much ... After one month of internship in Hyderabad i dont know how to print Hello world in python... But after this video I'm able to do 50% of python coding
Are u kidding?
What u did in that one month Internship then ?
@@nityanand4581 Java instead of python.. 😎
@@NikhilKumar-iz5bk
Ofc how can you learn swimming from Singing classes. 😑
@@nityanand4581 that's why I never learnt singing...
@@NikhilKumar-iz5bk kya chutiya hai tu
4:34:04
Output: Greater
4:34:42
Program:
a=int(input("Enter the age :"))
if(a>18):
print("Entered age is great than 18")
elif(a==18):
print("Entered age is 18")
else:
print("Enter age is less than 18")
5:05:44
Program:
a=str(input("Enter the charcter:"))
if(len(a)>10):
print("The username has more than 10 letters")
else:
print("The username is less than 10 letters")
5:50:00
num=int(input("Enter the number : "))
i=1
while i
THANKS bhai
Interview me kaam aayega aise choti choti cheeze
thanks bhai.......