The people who dislike don't know how many efforts go behind all these videos.... This is very nice explanation. Thanks Harry bhai!!
@aryankalra13583 жыл бұрын
There is a reason why this guy has 7.3k likes over 69 dislike
@PawanKumar-ol5sl3 жыл бұрын
What reason?
@Sunshine9p3 жыл бұрын
@@PawanKumar-ol5sl what do u mean?
@PawanKumar-ol5sl3 жыл бұрын
What is reason of 7.3k likes pe 69 dislike ?
@PawanKumar-ol5sl3 жыл бұрын
Aryan Kalra ne hi to kaha tha
@rishabhsharma3294 жыл бұрын
You're exceptional harry. recommended you to brother of mine as well !
@raghavsharma65943 жыл бұрын
@Makai Asher lmaooo noob
@aakashsenkumar74883 жыл бұрын
you have same number of likes as harry's vid i meant the digits are same
@r.k.rajoria11723 жыл бұрын
I like the docstring facility in python. It is really helpful for professionals.
@swapnil53324 жыл бұрын
Dear Harry Sir, i am Mechanical engineer and started learning AI from last month.. and started learning python from your videos.. it was amazing... i made this program for "basic Area calculator" by learning up to this video.. Thank you def square_area(): sqside = float(input("enter side: ")) if sqside == 0: print("value should be more than zero") return sq_area = sqside ** 2 print("Area of Square is :", sq_area) return sq_area def rectangle_area(): b = float(input("enter first side ")) h = float(input("enter second side ")) if b == 0 and h == 0: print("value should be more than zero") return rec_area1 = b * h print("Area of Rectangle is", rec_area1) return rec_area1 def circle_area(): r = int(input("enter radius ")) circ_area1 = 3.142 * r * r print("Area of Circle is", circ_area1) return circ_area1 sq = square_area ci = circle_area re = rectangle_area print("Choose your entity ","sq for square ","re for rectangle ","ci for circle") ans= input("Enter entity to find area ") while(ans): if ans== "sq": print (square_area()) break if ans== "ci": print (circle_area()) break if ans== "re": print (rectangle_area()) break else: print("Wrong entity") break
@MuskanAroraTheVideocrafter Жыл бұрын
thankyou so much , your single comment made me understand and do my cs project😍🥰🤩which i couldnt complete past few weeks🥲😭
@axh_ketchum4 жыл бұрын
He is a ""Desi Programmer"" Good job man.... great Fan !!!!
@ashulahre80093 жыл бұрын
You have a error
@soleil28163 жыл бұрын
Syntax error ⚠️
@nitishdhiman46305 жыл бұрын
Bro you are genius .. teaching techniques are spectacular.. docstring concept was really helpful..
@abhishekvelera47804 жыл бұрын
Never heard of doc strings but thanks to you for giving such knowledge
@vipultewariibm4 жыл бұрын
Hi Harry, I really appreciate your efforts for creating such wonderful tutorial and it will help a lot to many people who are aspiring developers or who is interested in learning Python. Adding to it, can you please also add the video regarding functions to show the example where it can also return more than one values as generally function return only one value but in Python we can return more than value. If you have already added this example in any future examples then it is fine. I am pasting an example in the comment section. I hope you don't mind it. Thanks in advance and again appreciating your efforts... #Multiple values can be returned as result from the function: def function3(a,b): """This function will return values for addition and substraction both for entered numbers""" add_result = sum((a,b)) sub_result = a - b return add_result,sub_result add_value,sub_value = function3(7,5) print("Addition result is :",add_value,"Substraction result is :",sub_value)
@samme42944 жыл бұрын
what if i need a run time choice between number of returns i needed
@debasishsahoo34464 жыл бұрын
Thanks bro
@almadijayangaming8343 жыл бұрын
Harry Bhai, I have watched many videos on return value and never really understood it. This video taught it to me very easily... Thank you so much!
@wizminar3 жыл бұрын
Bro thanks...... just completed 30 videos.....loved u r series :) it's my second language, i learned html and css now python
@AadityaDwivedi4 жыл бұрын
Sir/Bro we 5 friends in a group started learning python from your videos . Really we realised we found coding so much easy . Please make videos on flutter .
@ravindrakaushik62454 жыл бұрын
You are genius bro. Hame bhi add kar lo apne group me.
@girishpandey38362 жыл бұрын
@@ravindrakaushik6245 bhia hmako bhul gaye ham Tohre gar ke pecha to rhta hu
@mintuchoudhary37022 жыл бұрын
Bro you have notes
@chinmaymathur24303 жыл бұрын
"Harry"- A man with no haters.
@nitikasharma36233 жыл бұрын
No man you are wrong. White hat jr.
@itzz3 жыл бұрын
@@nitikasharma3623 🙁🤣🤣🤣🤣🤣hmm 🤣
@sarveshkumarnasare14204 жыл бұрын
Apke last words Bohot kuch sikha kr gye 🤩..thanks Harry ji 😊
@siddheshpanajkar6603 жыл бұрын
Harry you are just amazing, and the way you explained docstring is just awesome.
@ssbigdata67323 жыл бұрын
Thank you harry for discussing Doc String
@prernamittal21693 жыл бұрын
@CodeWithHarry your videos are fully dependable for learning
@sanasaleem47373 жыл бұрын
6:26 def function2 (a, b): formula = a**2 + b**2 + 2*(a*b) return formula answer = function2(2, 4) print("answer is: ",answer)
@RohanDasRD6 жыл бұрын
learned something new today! mloved it!
@programmingwithjavascript35793 жыл бұрын
Hello Rohan das bro
@vikaasadityachouhan29024 жыл бұрын
def average(list_of_numbers,n): """Run the below program to find the average of numbers""" avg=(sum(list_of_numbers))/n return avg list_of_numbers = [] print(average.__doc__) n = int(input("For how many number are we finding average for? ")) i=0 while i
@samme42944 жыл бұрын
good one Vikaas
@shreyank15584 жыл бұрын
This was greatly explained Thanks Man ... Applauded ₹40
Harry bhai , kya baat hai apne __doc__ very easily explain kiya. Thanks Harry bhai.
@nimishshrimankar62574 жыл бұрын
Mujhe to kuch bhi samj nhi aya
@terminalsocket36772 жыл бұрын
Thanks Harry Bhai. You are the best. I have watched many videos on return value and never could really understand it. But now i do.
@robosapien14133 жыл бұрын
Actually am mechanical engineer but I think (mechanical+Python =deadly combination ) for future ... thanks for these lectures
@sayanNITdgp20252 жыл бұрын
same for me
@robosapien14132 жыл бұрын
@@sayanNITdgp2025 you are from mechanical
@sayanNITdgp20252 жыл бұрын
@@robosapien1413 yupp
@robosapien14132 жыл бұрын
@@sayanNITdgp2025 seems like u have same interest ...robotics and mechanical .... Cool Can I get your fb id so that in future if get stuck ... I will take ur help
@sayanNITdgp20252 жыл бұрын
@@robosapien1413 yes🤩.... My dream is Boston Dynamics
@shreyashkashyap3 жыл бұрын
Thank you! Was waiting for this video.
@HARSHYADAV-nx8ug5 жыл бұрын
upto the point.good work
@Jagjot_Singh4 жыл бұрын
Aree bhai best explaination 👍
@sudarshanmhaisdhune10394 жыл бұрын
Ekdm mst content harry bhai.....
@gadhavijayvant3 жыл бұрын
hello sir mene abhi 2021 - march me aapki series start ki hai great job aapane excercise 3 di wo complete ki hai SO jab hame guess the number chahiye mil jaye .........
@professionaltailors14894 жыл бұрын
😍😍😍😍great man.....i love your videos ...u make easy to understand........really u are appreciatable
@garainfamily74313 жыл бұрын
After coding in Scratch, its now very easy for me :D
@charanm17733 жыл бұрын
Thanks, Harry Bhai for providing us with these python courses for free
@saikatrano39873 жыл бұрын
Dil se shukriya harry bhai.. ❤️❤️❤️♥️♥️
@rabbanali97822 жыл бұрын
a = int(input("enter first number")) b = int(input("enter second number")) def rabban(a,b): """This is a function which will input two numbers and sum them and give ther summing result and there average.""" print("rabban gives this answer: Sum of these two numbers is:",a+b) average ="And average of these two numbers is",(a+b)//2 return average v=print(rabban(a,b)) # print(rabban.__doc__)
@firefluxgaming95514 жыл бұрын
bhai mene ek average finder of ten number banaya hai :- print("this is firefluxer's super average finder") print("enter the first number") n1=input() print("enter the second number") n2=input() print("enter the third number") n3=input() print("enter the fourth number") n4=input() print("enter the fifth number") n5=input() print("enter the sixth number") n6=input() print("enter the seveth number") n7=input() print("enter the eighth number") n8=input() print("enter the nineth number") n9=input() print("enter the tenth number") n10=input() d=(int(n1)+int(n2)+int(n3)+int(n4)+int(n5)+int(n6)+int(n7)+int(n8)+int(n9)+int(n10))/10 print("Average(mean) ",end="") print("-") pls koi bhi like kar do agar acha laga to aur try karke run karke dekho agar ho sakey to harry bhai pls dil dedo
@Amina-hs9px4 жыл бұрын
Good bhai
@sahilpunia21224 жыл бұрын
bhai apka program bilkul shi h bs last me apne jo print("-") ye likha h yha galti h. isko edit kr k shi kr lo... print(" ") iska matlab hota h jo bhi isme type kroge vo print ho jaega edit kr k aap print(d). likh do apka program correct ho jaega....
@rachitjain55984 жыл бұрын
Thank you Harry for these awesome videos. Have 1 doubt in this video. Can we use this _doc_ string for the logic purpose in the program. For ex: if function1.__doc__ == "Harry": do something Can you please also tell the correct sequence of your playlists to be completed for Machine Learning course?
@dulakmandal29354 жыл бұрын
Yes you can. Try it yourself. It works.
@shaganjotkaur2693 жыл бұрын
Thanks a lot and lots of respect 😊
@Vv-xt9rz2 жыл бұрын
Ty so much sir bass apka he videos samjta hi u r really good
@f-addicted74393 жыл бұрын
One of the best tutorial of python❤️🙏
@pw-fanclub28264 жыл бұрын
doc string is good thing I learn first time thank you
@ECHimanshuJungareEC3 жыл бұрын
Thankuu harry bhai....ap great hooo
@kishanbhise47332 жыл бұрын
Great way of teaching Harry bhai
@victor.novorski3 жыл бұрын
You use light theme? 👀 🔥
@aakashsenkumar74883 жыл бұрын
sus
@Heyaadi012 жыл бұрын
Such a great video by a great sir.🤓
@shubham18goyal2 жыл бұрын
Thanks for crystal clear clearification... Keep posting
@chainsawdude20872 жыл бұрын
def multilpyfunc(a,b): '''This function find the product of two given numbers ''' m=a*b return m x=multilpyfunc(3,5) print(multilpyfunc.__doc__)
@karishmasharma55713 жыл бұрын
Nice sir Thank you 🙏
@girishchede93704 жыл бұрын
harry bhai apne website bohot acchi banayi hai .
@tusshargoswami34433 жыл бұрын
Bro before you start, if you share the syntax on your screen then explain with definition, it will give the actual understanding better for limited users
@rajankumar_375 жыл бұрын
Must video ._docstring_ naya sikhne ne mila
@abhinav14832 жыл бұрын
Great tutorial bhai!!! Thank You😀😀
@ahmadfraz97154 жыл бұрын
you are really professional teacher..
@nikki36823 жыл бұрын
thank u so much for making this video
@mandvibhadouriya68503 жыл бұрын
def function1(a,b): '''yes we are using function''' sum = a + b print(sum) return (sum) v=function1(12,2) print(v) print(function1.__doc__) output=== 14 14 yes we are using function
@royrings2 жыл бұрын
keep going champ!!!
@_itz._moin_2 жыл бұрын
Excellent Tutorials
@skillenhancer55212 жыл бұрын
doc string concept was new for me. Thanks harry bhai .
@arpitagec95 жыл бұрын
You talked about data science jargons like R square. Can you pls make a series to cover all stats concept required for ML.
@pickprogramming42065 жыл бұрын
please give me your contact
@ramkrishnayadav93352 жыл бұрын
i m learning python through you.. sir 🙏🙏🙏❤️❤️
@syedfarhanali95274 жыл бұрын
amazing bro !!!!
@jayandhami73442 жыл бұрын
love from Nepal harry bhai ❣ awesome video
@Engineer90603 жыл бұрын
that moment he speaks beta ka nam sikandr or hota dubla patla sa... i literally launghed
@rajivmura5915 жыл бұрын
Superb 🙏🙏🙏
@samme42944 жыл бұрын
def table_print(i): """ This function prints table of any number given as function input""" j = 1 print("So you need the table of {} Here you go " .format(i)) while(j
@thestrugglingguy65254 жыл бұрын
# a = 9 # b = 8 # c = sum((a, b)) # built in function def function1(a, b): print("Hello you are in function 1", a+b) def function2(a, b): """This is a function which will calculate average of two numbers this function doesnt work for three numbers""" average = (a+b)/2 # print(average) return average # v = function2(5, 7) # print(v) print(function2.__doc__)
@abhi_14413 жыл бұрын
This is some high class explanation..
@shankhadeepghosh60863 жыл бұрын
User1=int(input (" Enter the number: ")) User2=int(input (" Enter the number: ")) def addition (user1,user2): Print("Your value is :",user1+user2) addition(user1,user2)
@shivanshsoni3793 жыл бұрын
thanks bro for teaching us.....
@pradeepchaursia6562 жыл бұрын
Hello Harry! I m preparing competitive exam, your tutorial is very helpful for me lots of thanks❤
@VishalSingh-oe3zx4 жыл бұрын
Hello harry Bhai. here it is... print(function2.__doc__) i have reached on this video.
@umairy3522 жыл бұрын
Ok Sir good ho gya👌
@programmingfacts65323 жыл бұрын
concept cleared
@manmeetsingh68316 жыл бұрын
nice...easy explainations....
@coder.bihari3 жыл бұрын
you are great sir
@engineer_miss5 жыл бұрын
please make a series on machine learning.
@saharayub44482 жыл бұрын
good work!
@mystery454544 жыл бұрын
😊👏Nice
@laliteshpandey3444 жыл бұрын
def functions (): print ("Binod") Function () Output= binod
@dreamerb1 Жыл бұрын
Thank you so much harry bhai❤❤
@anandgp072 жыл бұрын
Thank you Harry bhai for the video
@foruse4713 жыл бұрын
Love you Harry bhaiya 😘😘😘😘😘😘
@swagataacharjee5344 жыл бұрын
Can I use conditional statements( if, ifelse, else ) or loops( while, for ) in Functions?
@fernsfloy4 жыл бұрын
yes
@Vikash_63-713 жыл бұрын
Yes
@hibasyed76463 жыл бұрын
Amazing
@cricketisourpassion69562 жыл бұрын
well done harry
@akashgupta62546 жыл бұрын
Osssm video bro..❤
@raunaksahu90594 жыл бұрын
Sir you are print("Very Very Good teacher🤞🤞")
@PawanKumar-ol5sl3 жыл бұрын
Error no emoji can print in python .
@raunaksahu90593 жыл бұрын
@@PawanKumar-ol5sl oh! It's a my mistake ok
@VijayChauhan-Krishna3 жыл бұрын
Thank you sir ❤️
@ravisuman1743 жыл бұрын
Thank you sir Hamre liai ye channel banana ke liai
@prernasonawane72764 жыл бұрын
thanks sir youare great
@ravidesai122 жыл бұрын
aap best ho bhai
@ankurmehta43256 жыл бұрын
Bhai bhot ache se samjate ho aap
@adityapandey7424 жыл бұрын
garda bhai love u
@funnytbaadhrk52042 жыл бұрын
def funck1 (a,b): """Theis line are very importen so do not try to delete(this line name dock string) this is the doc strin if you want print this line so write-print(function name,__doc__)""" #average=(a+b)/2 #return average print(funck1. __doc__)
@DakshuMachines3 жыл бұрын
Actually Harry bhai I am CS student and I started your python in one video , now I am at the point of Recursion but I want to learn all things like Data structures so I want to access your python playlist but from where I can start it??
@hackerking69893 жыл бұрын
thanks Harry bhai
@musiciantirth37104 жыл бұрын
I Watched Your 58 Videos Of Python Playlist But Mujhe Tab Realize Gua Ki Nahi Mujhe To Kuchh Samajh Hi Nahi Aa Raha Baad Me Mene Vaaps Chalu Ki Playlist ☺️And Now I Understood Everything
@thestrugglingguy65254 жыл бұрын
bhai isiliye samajh nhi aa rha hoga kyuki aap isko television ki tarah dekh rhe honge agar apko sach me intrest h to pycharm kholke har concept ko code kro or phir khud samjho .... me bhi pehle aapki tarah hi dekhta tha or iske chakkar me mere 2 mahine barbaad hogye
@musiciantirth37104 жыл бұрын
@@thestrugglingguy6525 yes mene bhi baad me practical kiya videos dekhke
@thestrugglingguy65254 жыл бұрын
@@musiciantirth3710 nice
@harshitachaurasia12464 жыл бұрын
Really nice videoss :) :) Please make video over artificial intelligence and machine learning :)
@alexjr9774 жыл бұрын
Please go to channel
@harshitachaurasia12464 жыл бұрын
@@alexjr977 Sure
@harshitachaurasia12464 жыл бұрын
@@alexjr977 I wanna become data scientist 😅
@harshitachaurasia12464 жыл бұрын
@@alexjr977 thanks 😊
@harshitachaurasia12464 жыл бұрын
@@alexjr977 ya i completed almost now projects are remaining 👍 Do complete it ,it will help you 🤗