Functions in Python | Python Tutorial - Day #20

  Рет қаралды 706,712

CodeWithHarry

CodeWithHarry

Күн бұрын

Python is one of the most demanded programming languages in the job market. Surprisingly, it is equally easy to learn and master Python. This python tutorial for absolute beginners in Hindi series will focus on teaching you python concepts from the ground up.
Access the Playlist: • Python for Beginners (...
Link to the Repl: replit.com/@co...
Join Replit the browser-based IDE used in this course - join.replit.co...
►Checkout my English channel here: / @programmingwithharry
►Instagram: codewithharry
python, C, C++, Java, JavaScript and Other Cheetsheets [++]:
Playlist: • Coding CheatSheets 🧾 b...
►Learn in One Video[++]:
Python[15 Hr]: • Python Tutorial For Be...
Python Advance[3.5 Hr]: • Python Programming Cou...
Python[1 Hr]: • Learn Python In Hindi ...
Python[2 Hr]: • Python Tutorial In Hin...
Python[15 Min]: • 15 Minute Python Tutor...
JavaScript[1 Hr]: • JavaScript Tutorial
C[1.3 Hr]- • C Programming Tutorial...
php[1 Hr]: • Learn Php In One Video...
php[2.3 Hr]: • Php Tutorial for Begin...
php[Project]- • Login And Registration...
HTML[30 Min]: • HTML 5 Tutorial For Be...
CSS[8.5 Hr]: • CSS Tutorial In Hindi ...
CSS[1.4 Hr]: • CSS 3 Tutorial For Beg...
Wordpress[3.2 Hr]: • How To Make a WordPres...
Angular[2 Hr]: • Angular Tutorial in Hindi
Java[2.3 Hr]: • Java tutorial in hindi 🔥
Web Scraping[1 Hr]: • Web Scraping Tutorial ...
MongoDB[2 Hr]: • MongoDb Tutorial For B...
Numpy[1 Hr]: • Numpy Tutorial in Hindi
Android Dev[12 Hr]- • Android Development Tu...
Linux[1 Hr]: • Linux Tutorial For Beg...
JQuery[1.1 Hr]: • jQuery Tutorial For Be...
Git and GitHub[1.1 Hr]: • Git & GitHub Tutorial ...
►Complete course [playlist]:
React: • React Js Tutorials in ...
Python- • Python Tutorials For A...
OOP Python- • Object Oriented Progra...
Java: • Java Tutorials For Beg...
JavaScript- • JavaScript Tutorials I...
PHP- • PHP Tutorials in Hindi
C- • C Language Tutorials I...
C++- • C++ Tutorials In Hindi
Git & GitHub- • Git and GitHub Tutoria...
Android Dev- • Android Development Tu...
Python GUI- • Python GUI: Tkinter Tu...
Web Development- • Web Development Tutori...
Python Django: • Python Django Tutorial...
Projects Using HTML, CSS & Javascript- • Projects Using HTML, C...
Data Structure and Algo: • Data Structures and Al...
Follow Me On Social Media
►Website (created using Django Rest & Angular): www.codewithha...
►Facebook: / codewithharry
►Instagram: / codewithharry
Twitter: / codewithharry
Comment "#HarryBhai" if you read this 😉😉

Пікірлер: 1 200
@CodeWithHarry
@CodeWithHarry Жыл бұрын
One quick correction at 3:12 : The formula for Geometric mean is not correct! If you haven't yet accessed the playlist, do it now: kzbin.info/aero/PLu0W_9lII9agwh1XjRt242xIpHhPT2llg
@Abhishekgurjar_
@Abhishekgurjar_ Жыл бұрын
No problem Harry bhai
@darkcoder1389
@darkcoder1389 Жыл бұрын
Bhi plzz " C " ya " javascript " pe 100days lao
@subhasssadhu
@subhasssadhu Жыл бұрын
@@darkcoder1389 there are already around 100 videos recently completed by Harry bhai in Javascript
@ApniGardening7
@ApniGardening7 Жыл бұрын
no problem
@gpsmarket5823
@gpsmarket5823 Жыл бұрын
web 3 do something......
@amoghaggarwal
@amoghaggarwal Жыл бұрын
Old is Gold, Binod was such an old refrence but brought a smile to my face.
@nigablack11
@nigablack11 19 күн бұрын
heard binod
@noobToPro2004
@noobToPro2004 Жыл бұрын
Damn I cannot believe I am maintaining consistency I do watch only one video per day cause I am not from cs and it's my 20th day I'm very happy that you are my first teacher to teach me coding. Thank you Harry bhaiya for making coding simple to understand :)
@priyanshugupta3576
@priyanshugupta3576 Жыл бұрын
which branch
@seeratzafar4310
@seeratzafar4310 9 ай бұрын
@@priyanshugupta3576 same bro
@Besankaladduu
@Besankaladduu 8 ай бұрын
​@@seeratzafar4310same bro
@debasishbesra2901
@debasishbesra2901 Жыл бұрын
Day 5 of #100DaysOfCode. Today in this video 20, I learned that Python functions are organized blocks of code for specific tasks. There are built-in and user-defined functions. Built-in functions come pre-coded, while user-defined ones are custom-made. Functions are defined using the 'def' keyword and called with their name and parameters. This helps keep code neat and organized. Thank You Harry Bhaiya.
@Archanaghimire_18
@Archanaghimire_18 3 ай бұрын
why is my function not running?
@hanzuu17
@hanzuu17 2 ай бұрын
@@Archanaghimire_18 try in this format, def function_name [ try the function name like this for eg. isGreater , first letter make it small and the next word start with capital ] (parameters): Then write the logic for the function and then whatever is yur function name 'call' it...
@mohakgrover1420
@mohakgrover1420 11 ай бұрын
00:00 Functions are used to separate logic from main program 01:36 Functions are blocks of code that can be called whenever needed 03:50 Converting code into function 06:02 A function can be written to find the greater number from two given numbers. 08:02 Functions are like code words used to define a block of code 10:14 Functions help in breaking down logic in bigger programs. 12:02 Functions in Python 14:04 Basics of Creating and Calling Functions
@intekhab3425
@intekhab3425 9 ай бұрын
The most useful and meaningful comment here
@udayneolia6853
@udayneolia6853 Жыл бұрын
Everything is cleared and the "binod" is on another level
@TECH_HELPER_irfan
@TECH_HELPER_irfan Жыл бұрын
hello friends i made this calculator how it is def plus(a,b): value1 = a + b print(value1) def minus(a,b): value2 = a - b print(value2) def multi(a,b): value3 = a * b print(value3) def divid(a,b): value4 = a / b print(value4) st1 = "welcome to the irfan's calclulator" print(st1.center(100)) print("enter any two numbers of which you want to know the answer") a = int(input("enter the first number :")) b = int(input("enter the second number :")) d = int(input('''enter the numbers to choose the symbole : "1" is for addition "2" is for subtraction "3" is for multiplication "4" is for divide please select one number :''')) match d: case 1: plus(a,b) case 2: minus(a,b) case 3: multi(a,b) case 4: divid(a,b)
@transylvanian1765
@transylvanian1765 6 ай бұрын
I made this: print("A code for operations on two numbers") input("Press Enter:") x = input("Choose your first number:") y = input("Choose your second number:") print("Choose any operation given below:") A = "1.Addition" print(A) B = "2.Substraction" print(B) C = "3.Division" print(C) D = "4.Multiplication" print(D) E = "5.Exponential" print(E) F = "6.Remainder" print(F) op = input("Choose any number from 1 to 6 as given above:") if "1" in op: print("Sum of", (x), "and", (y), "is:", int(x) + int(y)) if "2" in op: print("Difference between", (x), "from", (y), "is:", int(y) - int(x)) if "3" in op: print("Division of", (x), "and", (y), "is:", int(x) / int(y)) if "4" in op: print("Multiplication of", (x), "and", (y), "is:", int(x) * int(y)) if "5" in op: print((x), "to the power", (y), "is:", int(x)**int(y)) if "6" in op: print("Remainder of", (x), "when divided by", (y), "is:", int(x) % int(y))
@KumarRajputBhagya
@KumarRajputBhagya 2 ай бұрын
For your work i will give you 100 but its silence you can do it directly without using function 😅
@Prashant_Sharma_MOV
@Prashant_Sharma_MOV 2 ай бұрын
good irfan......🥰🥰
@RonitPaul-o5x
@RonitPaul-o5x 29 күн бұрын
Perfectly done GOOD JOB
@Graphophile_
@Graphophile_ 2 күн бұрын
Awesome 👍
@mariamhasan3733
@mariamhasan3733 Жыл бұрын
Day #20 done! Harry bhai using the Binod meme was a smart move to let us understand the use of function easily 😆
@RK.7789
@RK.7789 Жыл бұрын
Ashtagfirulla !!!! H to to ye kafir hi
@mariamhasan3733
@mariamhasan3733 Жыл бұрын
@@RK.7789 ?
@nasrullah3412
@nasrullah3412 Жыл бұрын
@@RK.7789 Harry bhai is Muslim. His actual name is Haris Ali Khan❣
@ak_014
@ak_014 Жыл бұрын
​@@k0p2. check his email in the first video of this course.Haris Khan is his name
@teamWWF23
@teamWWF23 Жыл бұрын
Brother which course of harry should i learn from Android 1:- the ultimate python course 2:- python tutorial for absolute biggners
@Navraj078
@Navraj078 Жыл бұрын
congratulations harry bro on 4 million subs you are the only guy whom which i learnt coding very well.
@education.online_frevryone
@education.online_frevryone Жыл бұрын
From: Malaysia and Pakistan. Love the way you teach using analogies, it's pretty easy to understand the concepts!
@FactualGuru1
@FactualGuru1 Жыл бұрын
please like the videos, he is a gem who is providing these courses for free may Allah bless you harry bhai
@simrahanjum5601
@simrahanjum5601 25 күн бұрын
def IsGreater (a, b): if (a>b): print ("First number is greater") else: print ("Second number is greater or equal") def AlgebricFormula (a, b): Form= a**2 - 2*a*b + b**2 print (Form) a=8 b=9 IsGreater (a, b) AlgebricFormula (a, b) Finally I was done with this after mistakes. Thank you for simplifying things.
@shubhampatil-py3vj
@shubhampatil-py3vj Жыл бұрын
its day 20 and i am consistently watching daily only 1 video , its the first time where i am maintaining my consistency well i will keep it on. Thanks a lot to you @CodeWithHarry sir to make the coding this easy and simple.
@i.have.no.idea.6.9
@i.have.no.idea.6.9 Жыл бұрын
what i made as an example: a = 34 b = 21 def increment(a, b): c = a + b print(c) increment(a, b) if a>b: print("A's value is greater than B") else: print("B's value is greater than A")
@anantabp6467
@anantabp6467 5 ай бұрын
So what?
@skeletonroastsx71
@skeletonroastsx71 2 ай бұрын
​@@anantabp6467 so moan 👄
@PhotoshopEditing-t9s
@PhotoshopEditing-t9s Ай бұрын
Harry sir! I have written the following code based on the knowledge you have provided. Thank you so much. I'm getting better and better in coding due to your efforts. Code: def calculatesum(a,b): sum=a+b print("The sum of two number is :", sum) def calculateGMean(a,b): gmean=(a*b)/(a+b) print("Geometric mean of two numbers is : ", gmean) num1=int(input("Enter the first number :")) num2=int(input("Enter the second number :")) calculatesum(num1,num2) calculateGMean(num1,num2)
@manhaabdellah2682
@manhaabdellah2682 Жыл бұрын
Very simple video. Love your studio setup!
@PhotoshopEditing-t9s
@PhotoshopEditing-t9s Ай бұрын
def calculategreaternumber(a,b,c): if(a>b): if(a>c): print("First number is greatest") elif(b>c): if(b>a): print("Second number is greatest") else: print("Third number is greatest") num1=int(input("Enter your first number :")) num2=int(input("Enter your second number :")) num3=int(input("Enter your third number :")) calculategreaternumber(num1,num2,num3)
@kirtisingh9659
@kirtisingh9659 Жыл бұрын
After completing this python series Please start JavaScript 100day tutorial ❤️
@aslameditz3895
@aslameditz3895 Жыл бұрын
Already it's there bro
@ahu22r
@ahu22r Жыл бұрын
Check playlist of this channel, you will get javascript playlist.
@shristisrivastava1324
@shristisrivastava1324 Жыл бұрын
@@aslameditz3895 can you please share me link . I am not able to find that course.
@Faheem_M_2010
@Faheem_M_2010 Жыл бұрын
@@shristisrivastava1324 kzbin.info/aero/PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR
@prathamthakulla4412
@prathamthakulla4412 Жыл бұрын
Good Evening Harry Sir, #100DaysPython tutorials complete hone ke baad aap please Machine Learning or Data Science ka full detailed tutorials banao, kyu ki aaj kal ML aur DS fields, top trending pe chal rahe hai all over the world, aur aane wale saalo main bhi chalne wale hai, sir please its a request if you have time, make ML or DS tutorials, just like python ones. Thank You.😀👌❤
@WHITEDEVIL-pu1oc
@WHITEDEVIL-pu1oc Жыл бұрын
S
@rode_atharva
@rode_atharva Жыл бұрын
We are going deep in python ! 👍👍❤❤
@zaryabz7809
@zaryabz7809 2 ай бұрын
💀
@rode_atharva
@rode_atharva 2 ай бұрын
@@zaryabz7809 are bhai mera wo matlab nahi tha , sacchi 😂😅😅😅. Mr hansu ya rou
@thetigers7777
@thetigers7777 21 күн бұрын
Playboy!
@rode_atharva
@rode_atharva 21 күн бұрын
@@thetigers7777 umm hmm noty ho raha hai😼
@VishalKumar-ne6qm
@VishalKumar-ne6qm Жыл бұрын
BInod best example, you are the one of them ,Who helping to all students, that is so good.
@joymukherjee5871
@joymukherjee5871 Жыл бұрын
Ah please upload DSA with python also🙏🙏🏻
@bayerwps3305
@bayerwps3305 Жыл бұрын
Yes bhai sir, i hope you've already planned ❤️
@pavilliong328
@pavilliong328 2 ай бұрын
Hi I am from Pakistan I am doing python course of fee 25 thousand. But after coming from class I watch your videos to clarify my concepts. Love u bhai
@shivang.73
@shivang.73 Жыл бұрын
1:30 "is concept ko samjha ke hi manunga" Is line se ek alag hi feeling ai❤❤ #PositiveVibesInPython
@vaibhavsoni4680
@vaibhavsoni4680 9 ай бұрын
def GreaterAmongThree(a,b,c): if a>b and a>c: print("a is greater") elif b>a and b>c: print("b is greater") else: print("c is greater") GreaterAmongThree(6,4,2) GreaterAmongThree(4,6,2) GreaterAmongThree(2,4,6)
@abdul_moiz_7
@abdul_moiz_7 Жыл бұрын
This is my first programming language to learn from scratch. So far it is going great. Thanks Harry bhai
@bepositive271
@bepositive271 Жыл бұрын
What do you mean by scratch
@abdul_moiz_7
@abdul_moiz_7 Жыл бұрын
@@bepositive271 means from the beginning.
@teamWWF23
@teamWWF23 Жыл бұрын
Brother which course of harry should i learn from Android 1:- the ultimate python course 2:- python tutorial for absolute biggners
@bepositive271
@bepositive271 Жыл бұрын
@@teamWWF23 Obviously the ultimate python course cause it hold the newest information about python and interviews
@teamWWF23
@teamWWF23 Жыл бұрын
@@bepositive271 thank brother ❣️ Can you also give me some tips how i make notes while learning from Android
@ravityagi7797
@ravityagi7797 3 ай бұрын
Thank you so much Harry Sir , because of you I am able to learn Python, and this course is amazing I am enjoying this course.
@CodeWithHarry
@CodeWithHarry Жыл бұрын
Code Backup Repository: github.com/CodeWithHarry/100-days-of-code-youtube
@vimal2022
@vimal2022 8 ай бұрын
congratulation for your 5+ million subs
@PsychologyPass28
@PsychologyPass28 7 ай бұрын
00:01 Functions help to separate and reuse code logic. 01:31 Using functions in Python to avoid repetitive code 03:54 Implementing the geometric mean as a one-line function. 06:50 Writing a function to compare two numbers and find the minimum value 08:40 Functions help in creating code that can be reused and called with a single word or line. 10:27 Using 'pass' in a function in Python allows to write the function body later 12:21 Creating user-defined functions in Python 14:27 Naming conventions and function indentation in Python Crafted by Merlin AI.
@adityapradhan8474
@adityapradhan8474 Жыл бұрын
Thank you so much harry bhaiya. My friends say that those who learn from video lectures aren't good programmer. But I learn from your video courses and I also refer to books...
@bhaanusisodia7790
@bhaanusisodia7790 10 ай бұрын
your friend is just bitter that they had to pay fees and you didint
@Emoteplayz
@Emoteplayz 7 ай бұрын
Smaj Gya ❤
@Thalapathy-Vs-Hyena
@Thalapathy-Vs-Hyena 3 ай бұрын
Sir I took the challenge to complete this playlist in 25 days that means 4 videos a day with practice, trust me sir I am loving it. I am now on 4th day. On track, thanks for such quality education ❤❤❤
@AMAN-7883
@AMAN-7883 Жыл бұрын
Harry bhai koi full stack web ka project le ao.
@Entertainment.Tube0
@Entertainment.Tube0 Жыл бұрын
Using python with database
@smartstudywithaj6259
@smartstudywithaj6259 Жыл бұрын
sir sab concepts crystal clear hai. Learning python for my class 8th computer exams........... but thoda advanced concepts bhi samajh raha hoon. mujhe HTML bhi aata hai.... aapke videos kaafi interesting hote hai aur kaafi maja aata hai, Thnx sir for your efforts ------------- your beloved student and future Programmer
@aryyann05
@aryyann05 Жыл бұрын
very good brother, keep it up
@atharvaandhale2465
@atharvaandhale2465 Жыл бұрын
bhai computer exams 8th mein kab se aa gaya re??
@aryyann05
@aryyann05 Жыл бұрын
@@atharvaandhale2465 haa bhai aa gae ab humari baari mein hee nhi they ab aa gae
@sushantsalunkhe4482
@sushantsalunkhe4482 Жыл бұрын
Hello Harry Can you make same playlist for MySQL
@rangegowdabg5679
@rangegowdabg5679 9 ай бұрын
Your teaching is great and I am from non-IT background you made code so simple to understand Thank u
@mayankpravin4080
@mayankpravin4080 Ай бұрын
a=int(input("Enter the First Number:")) b=int(input("Enter the second Number:")) def isgreaf(a,b): if a>b: print("first number is greater") else: print("second number is greater") isgreaf(a,b)
@Anmol-AK
@Anmol-AK 3 ай бұрын
binod brings back memories lol. Brought smile on my face Awesome series
@fgsahil
@fgsahil Жыл бұрын
Kis kis ke pass pc/ laptop nhi hai fir bhi python sikh rhe hai !!
@akgaming3984
@akgaming3984 Жыл бұрын
Mere pas
@Md__Ikbal_
@Md__Ikbal_ 6 ай бұрын
Mian
@Stdwidme
@Stdwidme 5 ай бұрын
Phone me bhi hoti h bhai
@Md__Ikbal_
@Md__Ikbal_ 5 ай бұрын
@@Stdwidme konsa app bro
@Stdwidme
@Stdwidme 5 ай бұрын
@@Md__Ikbal_ pydroid3
@piyushsaini1087
@piyushsaini1087 Жыл бұрын
Sir bahut muskil ho rha h mai class 10th mai hun orr humare pre-boards chl rhe h parr phirr bhe time bcha kar harr rozz apka course dekhta hun 🤗🤗🤗💕💕💕👍😘😘
@Abhishekgurjar_
@Abhishekgurjar_ Жыл бұрын
Love 💞❣️❣️ you Harry Bhai , you are great
@LakshyaMusicals
@LakshyaMusicals Жыл бұрын
TRY THIS GUYS , IT INCLUDES MAXIMUM TOPICS OF PREVIOUS LECTURES SMALL STARTING FROM A BEGINNER ALL THX TO HARRY BHAI 😁 def isgreater(a,b) : print(a,chr(176),"C") print(b,chr(176),"F") con1="first Value is greater than second " con2="both values are equal" con3="second number is greater than first " if(a>b): print(con1.title()) elif (a==b) : print(con2.title()) else : print((con3.title()).replace("Number","Value")) a=float(input("Enter Temperature in degree Celsius: ")) b=(9*a/5)+32 isgreater(a,b)
@lakhyadeepsen
@lakhyadeepsen Жыл бұрын
Day 20 of 100 of python challenge completed. #100daysofcode #100dayspythonchallenge
@aarijkhan329
@aarijkhan329 2 ай бұрын
Brilliant!!!
@jatinbhatt2222
@jatinbhatt2222 Жыл бұрын
Sir can you please tell the website from where we should start practicing questions or any other source. and also Present on Day-20 ✋
@bayerwps3305
@bayerwps3305 Жыл бұрын
Leetcode
@bayerwps3305
@bayerwps3305 Жыл бұрын
Geeks for geeks
@AbdulkhaliqKz
@AbdulkhaliqKz Ай бұрын
def isgreater(a,b): if(a>b): print("number is greater") else: print("number is less or egual") a=int(input()) b=int(input()) isgreater(a,b) 🎉🎉🎉🎉🎉
@amitranjeetjha1240
@amitranjeetjha1240 Жыл бұрын
This course is awesome 🔥🔥
@2minutemotivation82
@2minutemotivation82 Жыл бұрын
def har(a): if(a%2==0): print(a,"is even") else: print(a,"is odd") def greater(a,b): if(a>b): print("First number is bigger ") else: print("Second number is bigger or equal") def calculate(c,d): sum=c+d greater(c,d) har(sum) sub=d-c har(sub) multi=c*d har(multi) div=d/c har(div) a=int(input("Enter your first number : ")) b=int(input("Enter you second number : ")) calculate(a,b)
@KnownAsUdit
@KnownAsUdit Жыл бұрын
This may become the re rise of the BINOD meme among coders 😂
@souvikroy3584
@souvikroy3584 2 ай бұрын
Yes, i understood this concept
@tajinder715
@tajinder715 Жыл бұрын
kis kis ko ye concept 99% samjh a gya hai??????✌✌✌✌✌
@ATTIQ_OFFICIAL
@ATTIQ_OFFICIAL Жыл бұрын
100%
@shubhamsaini4871
@shubhamsaini4871 Жыл бұрын
Tujhe hi 99% aaya hai... Sabko to 100% aaya hai 😅
@koushik1947
@koushik1947 Жыл бұрын
mujhe 99% samajh aya tha fir "binod" ke example ke baad 110% samajh aa gya XD
@ATTIQ_OFFICIAL
@ATTIQ_OFFICIAL Жыл бұрын
@@koushik1947 ok binod
@ajeetverma3936
@ajeetverma3936 Жыл бұрын
100% bro😅😂🤣
@CatchyclawsXD
@CatchyclawsXD 2 ай бұрын
harry bhai! I love the way you teach. I am a 13 yr old and i am learning python bcz i found ur playlist
@rupanshu8761
@rupanshu8761 Жыл бұрын
def cube(a): print(f"the cube of the number str{a}",a**3) a=int(input("Enter the value: ")) cube(a)
@ammarchopda
@ammarchopda 9 ай бұрын
samjh aara hai sab kuch... harry bhai thank you so much
@sc-vines
@sc-vines 2 ай бұрын
a = int(input("enter your first number: ")) b = int(input("enter your second number: ")) def plusAB(a, b): total = a + b print(total) def greaterNumber(a, b): if(a>5): print(a, "is greater") if(b
@SalinChaudhary-y9y
@SalinChaudhary-y9y 7 ай бұрын
It's been the 20th day of coding, and I love it.
@syedfarhannaqvi3070
@syedfarhannaqvi3070 5 ай бұрын
yes sir samjh agayi . you are an excellent teacher may God Allah bless you
@sushil.golaji
@sushil.golaji 8 ай бұрын
Such bhai you are the best teacher in youtube ❣️ really Op bhai🎉
@krishnabohidar7226
@krishnabohidar7226 3 ай бұрын
I doubt if anyone is having doubt after watching your vids.. helping me alot with learning Python, Thank you so much sir
@AnilKumar-xl1ju
@AnilKumar-xl1ju Жыл бұрын
print("I am Present") I understand this properly Python is so easy😁😄
@attaullah4156
@attaullah4156 Жыл бұрын
print("Good")
@dyspro8954
@dyspro8954 Жыл бұрын
love the way you taught us!!! It's very helpful for us You are biggest inspiration of all time. I love to study with you.... Lots of Love..........🙃🙃
@harshiddhipathak3949
@harshiddhipathak3949 2 ай бұрын
First time I understand function 😁😁thank you.👍👍all cleared
@AbrarMahtab-d9l
@AbrarMahtab-d9l 14 күн бұрын
at first it seemed to be tough, i didnt understand. later when i myself tried and made it interesting, it became crystal clear!! Alhamdulillah
@believeitsreal
@believeitsreal Жыл бұрын
def calculate_mean(a, b): mean = (a*b)/(a+b) print(mean) if a > b: print("First number is greater") else: print("second number is greater") a = int(input("Enter the first number: ")) b = int(input("Enter the second number: ")) calculate_mean(a, b)
@TradeWithRDX
@TradeWithRDX Жыл бұрын
ifa>b: ^ SyntaxError: invalid syntax
@fazilbashir795
@fazilbashir795 Жыл бұрын
if(a>b) :
@jantibhaibabubhainariya3900
@jantibhaibabubhainariya3900 Жыл бұрын
मैंने आपकी Python सीरीज shikhna sharu किया .. आपका shikhane ka style बहुत बढ़िया है
@DineVlogs
@DineVlogs Жыл бұрын
Present Harry bhaiya 🙂 90% Samajh me agya baaki dobara video dekh kar samajh jaunga
@kingsam20
@kingsam20 Жыл бұрын
I understood each and every thing. Thank you harry bhai for making this series.
@ISR946
@ISR946 10 ай бұрын
yes , we are going deeper . enjoying the python, creating cool projects and having fun 😊😊😊😊😊😊
@ahmedalrafi500
@ahmedalrafi500 Жыл бұрын
inshallah we will all succed in our goals
@codewithsameer-r
@codewithsameer-r 2 ай бұрын
harry , your course is very easy
@animevoice13
@animevoice13 Ай бұрын
i am loving this
@deepakkumarmahanta7818
@deepakkumarmahanta7818 Жыл бұрын
Thank you so much Harry Bhai for the amazing videos...
@XCommonXGoat
@XCommonXGoat 9 ай бұрын
Today I Learned About Geometric Mean and About Functions.. Keyword=def Ex:- tuple,title,index,etc I Love Your Vids.
@CyrusMathayus
@CyrusMathayus 6 ай бұрын
It’s been 1 week since I started and trust me you nailed it .I aspire to be a programmer like you.Currently on #20 th video.
@Ashish_banaras
@Ashish_banaras 11 ай бұрын
wahhhhhhh harry bhai You are the Best
@Atharva-Shinde
@Atharva-Shinde 4 ай бұрын
a=12 b=15 c=7 d=9 Gmean=(a*b)/(a+b) print(Gmean) def calculateGmean(a,b): Gmean=(a*b)/(a+b) print(Gmean) calculateGmean(c,d) def holesquare(a,b): (a+b)**2==a**2+b**2+2*a*b print((a+b)**2) holesquare(c,d)
@code-acadmey
@code-acadmey 2 ай бұрын
perfect and understandable
@shyammishra2814
@shyammishra2814 3 ай бұрын
bhai agye badhiya se thanks bro you are working hard for us
@piyushsaini1087
@piyushsaini1087 Жыл бұрын
Present Sir...
@harshmehra8817
@harshmehra8817 6 ай бұрын
The expression (a * b) / (a + b) that you provided calculates the harmonic mean, not the geometric mean.
@it41148
@it41148 10 ай бұрын
def math(): while True: a=int(input("Enter 1st number, 0 to quit!: ")) if a==0: print("It was nice to meet you",c.capitalize(),end='!') break else: b=int(input("Enter 2nd number, 0 to quit!: ")) if b==0: print("It was nice to meet you",c.capitalize(),end='!') break else: print("Addition:",a+b) print("Subtraction:",a-b) print("Multiplication:",a*b) print("Division:",a/b) c=input("Enter your name, please! ") print("Your name is:",c.capitalize(),end='!'" Now do as directed!") math()
@CharlesPurnoDewri
@CharlesPurnoDewri Ай бұрын
i understand the function.Thank you
@md.abdullahalmamun960
@md.abdullahalmamun960 Жыл бұрын
Assalamu alaikum bi all is ok thanks for you i come from bangladesh and watch your video regularly
@santoshkumargupta6339
@santoshkumargupta6339 6 ай бұрын
Sir aa gaya samajh me function() , Thanks , God bless you 😍😍
@charcheetdh
@charcheetdh Жыл бұрын
Love From Nepal Harry Bhai❤️God Of coding @Harry Bhai
@gamingwithar9679
@gamingwithar9679 4 ай бұрын
I created this simple multiplication table generator function, just type the number of which you want the table and run the code, it will give you the table of that number, #Code Start:- def Table_Maker(a): for i in range (1,11): print(a,"X", i, "=", a*i) Table_Maker(23) #Cods Ends ____________________________________ Note :- replace the number "23" in "Table_Maker(23)" with the number of which the table you want and run the code.
@Uneek_Study
@Uneek_Study 8 сағат бұрын
Day 20 Attended ✅
@ujwal1632
@ujwal1632 Жыл бұрын
Aapaki wajahase muze python samaj aarahi he thanks 🙏
@susanjames325
@susanjames325 Жыл бұрын
Sumjh a gya herry bhai. Bhagwan humesha apko khush rkhe❤
@shivamtrivedi5867
@shivamtrivedi5867 10 ай бұрын
def calculategmean(a,b): mean = (a*b)/(a+b) print(mean) def Comparision(a,b): if(a>b): print(a,"is Bigger than",b) elif(b>a): print(b," is Bigger than",a) else: print("A and B is Equals to") a = 9 b = 8 calculategmean(a,b) Comparision(a,b) c = 80 d = 90 calculategmean(c,d) Comparision(c,d)
@mohammadhasnat9065
@mohammadhasnat9065 Жыл бұрын
function between function ............ def calculateGmean(a, b): mean = (a * b) / (a + b) print(mean) def isGreater(a, b): if a > b: print("a is greater ") else: print("b is greater or equal") def fun(s, a, b): if s == "mean": calculateGmean(a, b) else: isGreater(a, b) fun('mean', 6, 8)
@kigkish4261
@kigkish4261 6 ай бұрын
Best Teacher Ever.
@biswajeet9826
@biswajeet9826 2 ай бұрын
Bade Bhai bahut sahi tha video Its so hard to believe this is for Free!!😁❤
@owaisnadeem2751
@owaisnadeem2751 11 ай бұрын
Day 20 present Sir Love and respect from Pakistan
@Anonymous-12398
@Anonymous-12398 3 ай бұрын
love you harry bhai thanks for your efforts nice understanding
@LASTSTRANGER
@LASTSTRANGER Жыл бұрын
Present Sir, #Day_6
@SumitKumar-lr1bj
@SumitKumar-lr1bj 3 ай бұрын
geometric mean of any n numbers is (a1*a2*a3*...an)^1/n
@mandodarimodi7555
@mandodarimodi7555 6 ай бұрын
maza aagaya, samaj aagaya. thank you.
@codinghub_IITG
@codinghub_IITG 3 ай бұрын
Day 20 done ✅
@simple3688
@simple3688 Жыл бұрын
Present Sir 🤞
Function Arguments in Python | Python Tutorial - Day #21
13:50
CodeWithHarry
Рет қаралды 540 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 531 М.
Teaching a Toddler Household Habits: Diaper Disposal & Potty Training #shorts
00:16
МЕБЕЛЬ ВЫДАСТ СОТРУДНИКАМ ПОЛИЦИИ ТАБЕЛЬНУЮ МЕБЕЛЬ
00:20
小丑妹妹插队被妈妈教训!#小丑#路飞#家庭#搞笑
00:12
家庭搞笑日记
Рет қаралды 35 МЛН
How To Think Like A Programmer
1:00:07
Coding Tech
Рет қаралды 2 МЛН
Harsh Truth of Java in 2024! Ft. Ultimate Java Developer @Telusko
28:46
Functions in Python | Introduction | Python for beginners #lec56
24:07
Jenny's Lectures CS IT
Рет қаралды 135 М.
Introduction to Lists in Python | Python Tutorial - Day #22
20:07
CodeWithHarry
Рет қаралды 521 М.
Python Functions (The Only Guide You'll Need) #12
17:20
Programiz
Рет қаралды 580 М.
How much HTML, CSS and JavaScript is Enough to get a Job 🔥
14:32
CodeWithHarry
Рет қаралды 271 М.
Python vs JavaScript | What to Choose? | ft. Toolify.ai
9:23
CodeWithHarry
Рет қаралды 180 М.
Teaching a Toddler Household Habits: Diaper Disposal & Potty Training #shorts
00:16