Functions in Python | Python Tutorial - Day #20

Поділитися
Вставка
  • Опубліковано 15 січ 2025

КОМЕНТАРІ • 1,3 тис.

  • @CodeWithHarry
    @CodeWithHarry  2 роки тому +272

    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: ua-cam.com/play/PLu0W_9lII9agwh1XjRt242xIpHhPT2llg.html

    • @Abhishekgurjar_
      @Abhishekgurjar_ 2 роки тому +5

      No problem Harry bhai

    • @darkcoder1389
      @darkcoder1389 2 роки тому +13

      Bhi plzz " C " ya " javascript " pe 100days lao

    • @subhassssadhu
      @subhassssadhu 2 роки тому +7

      @@darkcoder1389 there are already around 100 videos recently completed by Harry bhai in Javascript

    • @ApniGardening7
      @ApniGardening7 2 роки тому +1

      no problem

    • @gpsmarket5823
      @gpsmarket5823 2 роки тому

      web 3 do something......

  • @mohakgrover1420
    @mohakgrover1420 Рік тому +41

    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

  • @amoghaggarwal
    @amoghaggarwal 2 роки тому +169

    Old is Gold, Binod was such an old refrence but brought a smile to my face.

  • @udayneolia6853
    @udayneolia6853 Рік тому +36

    Everything is cleared and the "binod" is on another level

  • @noobToPro2004
    @noobToPro2004 Рік тому +139

    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 :)

  • @debasishbesra2901
    @debasishbesra2901 Рік тому +62

    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 7 місяців тому

      why is my function not running?

    • @hanzuu17
      @hanzuu17 6 місяців тому

      @@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...

  • @education.online_frevryone
    @education.online_frevryone Рік тому +11

    From: Malaysia and Pakistan.
    Love the way you teach using analogies, it's pretty easy to understand the concepts!

  • @mariamhasan3733
    @mariamhasan3733 2 роки тому +56

    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 2 роки тому +1

      Ashtagfirulla !!!!
      H to to ye kafir hi

    • @mariamhasan3733
      @mariamhasan3733 2 роки тому

      @@RK.7789 ?

    • @nasrullah3412
      @nasrullah3412 2 роки тому +2

      @@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 Рік тому +20

    congratulations harry bro on 4 million subs
    you are the only guy whom which i learnt coding very well.

  • @simrahanjum5601
    @simrahanjum5601 4 місяці тому +1

    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.

  • @TECH_HELPER_irfan
    @TECH_HELPER_irfan Рік тому +35

    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 10 місяців тому +2

      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 6 місяців тому +5

      For your work i will give you 100 but its silence you can do it directly without using function 😅

    • @Krispaneo
      @Krispaneo 6 місяців тому

      good irfan......🥰🥰

    • @RonitPaul-o5x
      @RonitPaul-o5x 4 місяці тому

      Perfectly done GOOD JOB

    • @Graphophile_
      @Graphophile_ 4 місяці тому

      Awesome 👍

  • @PhotoshopEditing-t9s
    @PhotoshopEditing-t9s 5 місяців тому

    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)

  • @shubhampatil-py3vj
    @shubhampatil-py3vj Рік тому +8

    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.

  • @FactualGuru1
    @FactualGuru1 Рік тому +9

    please like the videos, he is a gem who is providing these courses for free
    may Allah bless you harry bhai

  • @LakshyaMusicals
    @LakshyaMusicals Рік тому +2

    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)

  • @smartstudywithaj6259
    @smartstudywithaj6259 Рік тому +3

    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 Рік тому +1

      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

  • @PhotoshopEditing-t9s
    @PhotoshopEditing-t9s 5 місяців тому +1

    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)

  • @manhaabdellah2682
    @manhaabdellah2682 Рік тому +10

    Very simple video. Love your studio setup!

  • @rangegowdabg5679
    @rangegowdabg5679 Рік тому +1

    Your teaching is great and I am from non-IT background you made code so simple to understand Thank u

  • @prathamthakulla4412
    @prathamthakulla4412 2 роки тому +9

    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.😀👌❤

  • @rode_atharva
    @rode_atharva 2 роки тому +22

    We are going deep in python ! 👍👍❤❤

    • @zaryabz7809
      @zaryabz7809 5 місяців тому

      💀

    • @rode_atharva
      @rode_atharva 5 місяців тому

      @@zaryabz7809 are bhai mera wo matlab nahi tha , sacchi 😂😅😅😅. Mr hansu ya rou

    • @thetigers7777
      @thetigers7777 4 місяці тому +1

      Playboy!

    • @rode_atharva
      @rode_atharva 4 місяці тому

      @@thetigers7777 umm hmm noty ho raha hai😼

  • @sushil.golaji
    @sushil.golaji Рік тому +2

    Such bhai you are the best teacher in youtube ❣️ really Op bhai🎉

  • @i.have.no.idea.6.9
    @i.have.no.idea.6.9 Рік тому +28

    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")

  • @riya.thakur.iit.007
    @riya.thakur.iit.007 Рік тому +2

    BInod best example, you are the one of them ,Who helping to all students, that is so good.

  • @abdul_moiz_7
    @abdul_moiz_7 2 роки тому +5

    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 Рік тому +1

      @@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 Рік тому +1

      @@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

  • @allcartooninonechhannel
    @allcartooninonechhannel Місяць тому

    Simple and sweet Calculator.....
    def add(x,y):
    return(x+y)
    def subtract(x,y):
    return(x-y)
    def multiply(x,y):
    return(x*y)
    def devide(x,y):
    return(x/y)
    print("choose operator")
    print('1: add')
    print('2: subtract')
    print('3: multiply')
    print('4: devide')
    choice = input("choose numbers as you like:")
    a = int(input("write your 1st number:"))
    b = int(input("write your 2nd number:"))
    if choice =='1':
    print(a, '+', b,'=', (a+b))
    elif choice =='2':
    print(a, '-', b,'=', (a-b))
    elif choice =='3':
    print(a, '*', b,'=', (a*b))
    elif choice =='4':
    print(a, '/', b,'=', (a/b))
    else:
    print("invalid command")

  • @ahmedalrafi500
    @ahmedalrafi500 Рік тому +2

    inshallah we will all succed in our goals

  • @Emoteplayz
    @Emoteplayz 11 місяців тому +2

    Smaj Gya ❤

  • @jantibhaibabubhainariya3900
    @jantibhaibabubhainariya3900 2 роки тому

    मैंने आपकी Python सीरीज shikhna sharu किया .. आपका shikhane ka style बहुत बढ़िया है

  • @PsychologyPass28
    @PsychologyPass28 11 місяців тому +3

    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 Рік тому +2

    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 Рік тому

      your friend is just bitter that they had to pay fees and you didint

  • @sushantsalunkhe4482
    @sushantsalunkhe4482 2 роки тому +5

    Hello Harry Can you make same playlist for MySQL

  • @ISR946
    @ISR946 Рік тому +1

    yes , we are going deeper . enjoying the python, creating cool projects and having fun 😊😊😊😊😊😊

  • @joymukherjee5871
    @joymukherjee5871 2 роки тому +7

    Ah please upload DSA with python also🙏🙏🏻

    • @bayerwps3305
      @bayerwps3305 2 роки тому

      Yes bhai sir, i hope you've already planned ❤️

  • @ammarchopda
    @ammarchopda Рік тому +2

    samjh aara hai sab kuch... harry bhai thank you so much

  • @deepakkumarmahanta7818
    @deepakkumarmahanta7818 2 роки тому +3

    Thank you so much Harry Bhai for the amazing videos...

  • @DineVlogs
    @DineVlogs 2 роки тому +2

    Present Harry bhaiya 🙂
    90% Samajh me agya baaki dobara video dekh kar samajh jaunga

  • @kirtisingh9659
    @kirtisingh9659 2 роки тому +12

    After completing this python series
    Please start JavaScript 100day tutorial ❤️

    • @aslameditz3895
      @aslameditz3895 2 роки тому +5

      Already it's there bro

    • @ahu22r
      @ahu22r 2 роки тому +1

      Check playlist of this channel, you will get javascript playlist.

    • @shristisrivastava1324
      @shristisrivastava1324 2 роки тому

      @@aslameditz3895 can you please share me link .
      I am not able to find that course.

    • @Faheem_M_2010
      @Faheem_M_2010 Рік тому

      @@shristisrivastava1324 ua-cam.com/play/PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR.html

  • @AbdulkhaliqKz
    @AbdulkhaliqKz 4 місяці тому

    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)
    🎉🎉🎉🎉🎉

  • @sitavyas-pl3xk
    @sitavyas-pl3xk 2 місяці тому +3

    I am in 7th std but I like coding so much so I am currently learning python from this series😅😅

    • @farhancubingexpert
      @farhancubingexpert Місяць тому

      Cool dude i am also interested in this field a lot but I am in 10th my parents want me to be a doctor :(

    • @farhancubingexpert
      @farhancubingexpert Місяць тому

      Still bro all the best make good games and stuffs

    • @farhancubingexpert
      @farhancubingexpert Місяць тому

      Ur only in 7th rn if u keep working u will be a master at 9th I prefer to take CS or AI or python after 10th and drop python for 10th only

    • @tusharpal7543
      @tusharpal7543 8 днів тому

      I am 24 but abhi tk smj ni aarha😂

  • @sc-vines
    @sc-vines 6 місяців тому

    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

  • @learnit6749
    @learnit6749 9 місяців тому +2

    good😍

  • @shivang.73
    @shivang.73 Рік тому +5

    1:30 "is concept ko samjha ke hi manunga"
    Is line se ek alag hi feeling ai❤❤
    #PositiveVibesInPython

  • @ignitegaming3998
    @ignitegaming3998 Місяць тому +1

    Thank you bro i will complete the 100 days and learn logic of Pyton and become very good at Pyton one day in my life

  • @AMAN-7883
    @AMAN-7883 2 роки тому +15

    Harry bhai koi full stack web ka project le ao.

  • @dyspro8954
    @dyspro8954 Рік тому +2

    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..........🙃🙃

  • @jatinbhatt2222
    @jatinbhatt2222 2 роки тому +5

    Sir can you please tell the website from where we should start practicing questions or any other source.
    and also Present on Day-20 ✋

  • @souvikroy3584
    @souvikroy3584 6 місяців тому +1

    Yes, i understood this concept

  • @lakhyadeepsen
    @lakhyadeepsen 2 роки тому +3

    Day 20 of 100 of python challenge completed. #100daysofcode #100dayspythonchallenge

  • @ravityagi7797
    @ravityagi7797 7 місяців тому +1

    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.

  • @amitranjeetjha1240
    @amitranjeetjha1240 2 роки тому +3

    This course is awesome 🔥🔥

  • @believeitsreal
    @believeitsreal 2 роки тому +1

    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)

  • @CodeWithHarry
    @CodeWithHarry  Рік тому +43

    Code Backup Repository: github.com/CodeWithHarry/100-days-of-code-youtube

  • @krishnabohidar7226
    @krishnabohidar7226 7 місяців тому

    I doubt if anyone is having doubt after watching your vids..
    helping me alot with learning Python, Thank you so much sir

  • @fgsahil
    @fgsahil 2 роки тому +213

    Kis kis ke pass pc/ laptop nhi hai fir bhi python sikh rhe hai !!

    • @akgaming3984
      @akgaming3984 2 роки тому +3

      Mere pas

    • @Md__Ikbal_
      @Md__Ikbal_ 10 місяців тому +2

      Mian

    • @Stdwidme
      @Stdwidme 9 місяців тому +5

      Phone me bhi hoti h bhai

    • @Md__Ikbal_
      @Md__Ikbal_ 9 місяців тому +2

      @@Stdwidme konsa app bro

    • @Stdwidme
      @Stdwidme 9 місяців тому

      @@Md__Ikbal_ pydroid3

  • @rupanshu8761
    @rupanshu8761 2 роки тому

    def cube(a):
    print(f"the cube of the number str{a}",a**3)
    a=int(input("Enter the value: "))
    cube(a)

  • @tajinder715
    @tajinder715 2 роки тому +259

    kis kis ko ye concept 99% samjh a gya hai??????✌✌✌✌✌

    • @ATTIQ_OFFICIAL
      @ATTIQ_OFFICIAL 2 роки тому +16

      100%

    • @shubhamsaini4871
      @shubhamsaini4871 2 роки тому +29

      Tujhe hi 99% aaya hai...
      Sabko to 100% aaya hai 😅

    • @koushik1947
      @koushik1947 2 роки тому +14

      mujhe 99% samajh aya tha
      fir "binod" ke example ke baad 110% samajh aa gya XD

    • @ATTIQ_OFFICIAL
      @ATTIQ_OFFICIAL 2 роки тому +3

      @@koushik1947 ok binod

    • @ajeetverma3936
      @ajeetverma3936 2 роки тому +3

      100% bro😅😂🤣

  • @sirahmad
    @sirahmad 2 роки тому

    inshallah aik din harry bhai kay 10 million subcriber ho gay buhat hi acha parhtay ho you are such a bless for humanity :)

  • @KnownAsUdit
    @KnownAsUdit 2 роки тому +6

    This may become the re rise of the BINOD meme among coders 😂

  • @biswajeet9826
    @biswajeet9826 6 місяців тому

    Bade Bhai bahut sahi tha video
    Its so hard to believe this is for Free!!😁❤

  • @harshiddhipathak3949
    @harshiddhipathak3949 6 місяців тому

    First time I understand function 😁😁thank you.👍👍all cleared

  • @fanciedinterface1616
    @fanciedinterface1616 Рік тому +1

    badiya sir bhut mza aaya

  • @DD_Bhagyesh
    @DD_Bhagyesh 2 роки тому +1

    Amazing Harry Bhai ❤️, wo line mast thi ki - "are bhai ye kya krke chhod diya" 😂

  • @CyrusMathayus
    @CyrusMathayus 10 місяців тому

    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.

  • @ananyaj_1235
    @ananyaj_1235 Місяць тому

    best content on youtube, lifesaving

  • @Thalapathy-Vs-Hyena
    @Thalapathy-Vs-Hyena 7 місяців тому

    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 ❤❤❤

  • @khushisoni21
    @khushisoni21 Рік тому

    finally aaj jake smjh aya harry bhhiya !!!

  • @AtoZsports10
    @AtoZsports10 2 місяці тому

    I love ❤this
    Function video. Because everything. So thank you
    Love from Wazeristan. From Afghanistan🇦🇫🎉

  • @AliHassan-nd3le
    @AliHassan-nd3le Місяць тому

    Very Infromative Video Thank you

  • @codewithsameer-r
    @codewithsameer-r 6 місяців тому

    harry , your course is very easy

  • @rushikeshjadhav4103
    @rushikeshjadhav4103 Рік тому

    samajh mei aya....mza aya ....Thankyou harry bro !!!

  • @shoaibmaqsood6605
    @shoaibmaqsood6605 2 роки тому

    harry bhai sb khuch samj aa raha hy. thanksssssssss for your efforts.

  • @AtifMalik-g3b
    @AtifMalik-g3b 14 днів тому

    #Basics of python user define function
    name = input("Enter your name:-")
    def greet(name):#definition
    print("Hello",name)
    greet(name)#calling
    a = int(input("Enter the num1:-"))
    b = int(input("Enter the num2:-"))
    def islesser(a,b):
    if(a

  • @aarijkhan329
    @aarijkhan329 6 місяців тому +1

    Brilliant!!!

  • @Ashish_banaras
    @Ashish_banaras Рік тому +1

    wahhhhhhh harry bhai
    You are the Best

  • @santoshkumargupta6339
    @santoshkumargupta6339 10 місяців тому

    Sir aa gaya samajh me function() , Thanks , God bless you 😍😍

  • @riya.thakur.iit.007
    @riya.thakur.iit.007 Рік тому +1

    smajh aa gya 😊 thanks for Harry ❤

  • @pavilliong328
    @pavilliong328 6 місяців тому

    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

  • @adityasharma-vk8fg
    @adityasharma-vk8fg Рік тому

    samajh aagya sir 👌👌

  • @syedfarhannaqvi3070
    @syedfarhannaqvi3070 9 місяців тому

    yes sir samjh agayi . you are an excellent teacher may God Allah bless you

  • @kingsam20
    @kingsam20 Рік тому +2

    I understood each and every thing. Thank you harry bhai for making this series.

  • @motivational_hub006
    @motivational_hub006 6 місяців тому

    perfect and understandable

  • @CatchyclawsXD
    @CatchyclawsXD 6 місяців тому

    harry bhai! I love the way you teach. I am a 13 yr old and i am learning python bcz i found ur playlist

  • @M_K_Entertains
    @M_K_Entertains 5 місяців тому

    understood and maza araha hai harryyy sirrrrrrrrrrrrrrrrrrrrrrrr

  • @hirenparkar7480
    @hirenparkar7480 3 місяці тому

    thankyou bhai functions samaj mein aagaye aur code likhake mazaa bhi aaagaya!!!!!😁

  • @man_united-z1h
    @man_united-z1h 7 місяців тому +1

    Day 20 done ✅

  • @sagensoren55
    @sagensoren55 2 місяці тому

    Very well explained sir

  • @topgunpilot2547
    @topgunpilot2547 Рік тому

    Harry bhai, majaa aa gaya! Thank you!

  • @Anmol-AK
    @Anmol-AK 7 місяців тому +1

    binod brings back memories lol. Brought smile on my face
    Awesome series

  • @shyammishra2814
    @shyammishra2814 7 місяців тому

    bhai agye badhiya se thanks bro you are working hard for us

  • @micfuse9846
    @micfuse9846 Рік тому

    Yaar samajh aagaya ! Maza aara hai!

  • @susanjames325
    @susanjames325 Рік тому

    Sumjh a gya herry bhai.
    Bhagwan humesha apko khush rkhe❤

  • @t-rex8923
    @t-rex8923 Рік тому

    Mazza AArAHAHHHH HAI HARRY PAJIIIIII,YOU RE A GENIUS!!!!!!!!!!

  • @FauL_UppU
    @FauL_UppU 2 роки тому

    Mazaa agya 🐍 easy teaching and understanding

  • @teancodes
    @teancodes 2 роки тому

    Oo Clear ho gya guru 👍👍👍😅

  • @gamingadda5381
    @gamingadda5381 Рік тому

    Guruji thankyou for this series .🙏🙏

  • @royfamily9273
    @royfamily9273 Рік тому

    Bohot maja aaya Harry Bhaiya and samajh v aa gaya.

  • @zuberkhan3050
    @zuberkhan3050 2 роки тому

    Samaj agaya harry bhai, or maza araha h python sikhny m

  • @vaibhavsoni4680
    @vaibhavsoni4680 Рік тому

    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)

  • @shubh3869
    @shubh3869 6 місяців тому

    Maza aa gya thank you sir🙏🙏🙏🙏🙏