Python Higher Order Functions | Python Tutorials for Beginners

Поделиться
HTML-код
  • Опубликовано: 1 янв 2025

Комментарии • 52

  • @vishnumuraly18
    @vishnumuraly18 Год назад +9

    def add(x,y):
    return x+y
    def sub(x,y):
    return x-y
    def mul(x,y):
    return x*y
    def div(x,y):
    return x/y
    def calculate(num,x,y):
    print(num(x,y))
    calculate(add,8,8)

  • @Marvelkashmir
    @Marvelkashmir Год назад +2

    Greatest teacher ever ❤❤❤❤❤

  • @AbhinayShankhdhar
    @AbhinayShankhdhar Год назад +22

    Mam one request.. Plz do not stop uploading.. Videos... Bcz of less views on content... You are so pretty and taught also good ( when you explain on white board) and it motivates me a lot to study I am at 13 lecture of your python course.. Thanks.. You cracked gate, I cracked Jeeadvanced :+

    • @qasimkhrd4600
      @qasimkhrd4600 Год назад +5

      Bro we literally have the same profile picture

    • @gdimmortal
      @gdimmortal Год назад

      ​@@qasimkhrd4600😂lol

    • @gdimmortal
      @gdimmortal Год назад +3

      If you cracked jee advanced you probably won't need to seek RUclips tutorial

    • @BoywithQuestions
      @BoywithQuestions Год назад

      thats not true, what if he cracked jee adv using youtube@@gdimmortal

    • @yashashwinir7611
      @yashashwinir7611 Год назад +1

      Mam please send the complete notes of python

  • @Loqii-Khan-lw5jk
    @Loqii-Khan-lw5jk Год назад

    Wow It's wonderful 😮

  • @VivekKumar-ib9cc
    @VivekKumar-ib9cc Год назад +6

    Mam we want a course in java from basic to advanced and DSA in java also. Mam please consider this request.

  • @marcusn.williams309
    @marcusn.williams309 Год назад

    My instructor ❤❤❤

  • @vickymdshorts77
    @vickymdshorts77 Год назад

    Beautiful mam of the year ❤

  • @vikiking164
    @vikiking164 Год назад +2

    I have completed my graduation last year I am here only to see you mam😂❤

  • @rongalamanindra5279
    @rongalamanindra5279 Год назад

    Thank you so much mam
    Please complete full course mam

  • @mohammedsisay-w5x
    @mohammedsisay-w5x 9 месяцев назад

    I like your explanation of the course and what I ask you is just can you make a tutorial of Django frame work for web development in python ??

  • @-kunchalaAjay
    @-kunchalaAjay 3 месяца назад

    def add(x, y):
    return x+y
    def sub(x, y):
    return x-y
    def mul(x, y):
    return x*y
    def div(x, y):
    return x//y
    def calculator(other_function, x, y):
    print("welcome to calculator")
    print(other_function(x, y))
    calculator(add, 4, 6)

  • @undergradplayers3057
    @undergradplayers3057 Год назад +1

    Ma'am plz plz upload next videos! 🙏🙏we all learn so much from you

  • @Vaibhav-l5p
    @Vaibhav-l5p Год назад

    Mam do you take offline classes also? If yes then what is the location?? please answer

  • @livingsmedia6484
    @livingsmedia6484 Год назад

    Aftr long time🥰 please do more vedios...

  • @Galactus_XxX
    @Galactus_XxX Год назад

  • @shivakrishna_varma9658
    @shivakrishna_varma9658 2 месяца назад

    def add(x,y):
    return x+y
    def sub(x,y):
    return x-y
    def mul(x,y):
    return x*y
    def div(x,y):
    return x/y
    def calculator(other_def_func,x,y):
    output=other_def_func(x,y)
    print(output)
    calculator(add,24,22)
    calculator(sub,24,22)
    calculator(mul,24,22)
    calculator(div,24,22)

  • @rajesh34525
    @rajesh34525 Год назад +1

    Mam please upload java lcture🙏🙏🙏🙏🙏please please🙏🙏

  • @yeshitamotwani2701
    @yeshitamotwani2701 Год назад

    Mam, please start a course on DSA in Python!

  • @BeerakaSharmila
    @BeerakaSharmila Год назад

    Mam please upload patricia topic in data structures mam

  • @Priyanshu_Das
    @Priyanshu_Das Год назад

    mam c++ continue kijiye and complete kijiye

  • @royalkarthik7752
    @royalkarthik7752 Год назад

    First comment madam

  • @rahadarafin9052
    @rahadarafin9052 Год назад

    please Add Audio Track mam.

  • @funvlogs5819
    @funvlogs5819 Год назад

    Madam you know i can see angel in youtube channel

  • @akshithahirakari3931
    @akshithahirakari3931 Год назад

    Mam please upload java from basic to advance please mam 🙏😢

  • @jauharzahir
    @jauharzahir Год назад

    Maa'm aren't you going to complete C++?
    please complete it.

  • @NewStory.01
    @NewStory.01 Год назад

    Assembly language 8086

  • @SureshDokara-t8d
    @SureshDokara-t8d Год назад

    Continue c++ please

  • @Lets_code_together_
    @Lets_code_together_ 10 месяцев назад

    def calculator(name):

    def add(x,y):
    return x+y
    def sub(x,y):
    return x-y
    def mul(x,y):
    return x*y
    def div(x,y):
    return x//y
    if name == "add": return add
    elif name == "sub": return sub
    elif name == "mul": return mul
    elif name == "div": return div
    name =input("please choose(add/sub/mul/div:)")
    new = calculator(name)
    print(new(20,10))

  • @AbdurRazzak-ct2pu
    @AbdurRazzak-ct2pu Год назад

    Can you help me?

  • @Vijay-bf2hi
    @Vijay-bf2hi Год назад +2

    def add(x,y):
    return x+y
    def sub(x,y):
    return x-y
    def mul(x,y):
    return x*y
    def div(x,y):
    return x/y
    def calculate(fun,x,y):
    print(fun(x,y))
    calculate(add,2,1)
    calculate(sub,2,1)
    calculate(mul,2,1)
    calculate(div,2,1)

  • @sandhya99__
    @sandhya99__ Год назад

    😢

  • @Doggy_Styles_Coding
    @Doggy_Styles_Coding Год назад

    Just the 9th comment .... my life feels like a low Order Function now :/

  • @paras7029
    @paras7029 Год назад

    Madam yo yantar to mahre paale na pade
    Fir bhi kosis kar rha samjne ki

  • @ganishake4027
    @ganishake4027 Год назад

    Muje utna samaj nhi aata per aapko denne aata hu ider bass

  • @HummingPlanet
    @HummingPlanet Год назад

    Madam is beautiful know😅😂😊

  • @peace9888
    @peace9888 Год назад

    U r so beautiful ❤❤
    Make video on your skin care health...

  • @barathkumarkarra5521
    @barathkumarkarra5521 Год назад

    import random
    f_list = []
    list1 = ['q','l','r','w']
    a = random.choice(list1)
    f_list += a # Here f_list is a list and a is of type string format, so how concatenation takes place
    print(f_list)
    ----------------------------------------------------------------------------------------------------------------------
    But why it is giving different output, could you please check and validate?
    Thanks in advance sir/mam, If you explain earlier...
    Anyone who observed my comment is going to answer should be highly appreciated..
    please anyone can explain, I am waiting for your response...

    • @komirishettysrivarshini2006
      @komirishettysrivarshini2006 7 месяцев назад

      In list +act same as append at last..as you choose random so at each time diff value is assigned and the list with that value is printed...

  • @anushamadugula4685
    @anushamadugula4685 6 месяцев назад

    def add(x,y):
    return x+y
    def sub(x,y):
    return x-y
    def mul(x,y):
    return x*y
    def div(x,y):
    return x/y
    def calculate(function,a,b):
    print(function(a,b))
    calculate(add,5,6)

  • @pravinmahindrakar6144
    @pravinmahindrakar6144 8 месяцев назад

    def add(x, y):
    return x + y
    def sub(x, y):
    return x - y
    def mul(x, y):
    return x * y
    def div(x, y):
    return x / y
    def calculator(func, x, y):
    print(func(x, y))
    calculator(add, 5, 6)
    calculator(sub, 5, 2)
    calculator(mul, 5, 6)
    calculator(div, 30, 6)