Python Higher Order Functions | Python Tutorials for Beginners #lec120

preview_player
Показать описание
In this lecture we will learn:
- What are Higher Order Functions?
- How to pass function as an arguments?
- How to return a function?

*********************************************

Connect & Contact Me:

*******************************************

More Playlists:

#higherorderfunction #python #pythonprogramming #pythonforbeginners #jennyslectures
Рекомендации по теме
Комментарии
Автор

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)

vishnumuraly
Автор

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

Abhinay_CRX
Автор

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

VivekKumar-ibcc
Автор

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)

anushamadugula
Автор

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

vikiking
Автор

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)

pravinmahindrakar
Автор

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

undergradplayers
Автор

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

ozpufjb
Автор

Thank you so much mam
Please complete full course mam

rongalamanindra
Автор

Aftr long time🥰 please do more vedios...

livingsmedia
Автор

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)

Vijay-bfhi
Автор

Mam, please start a course on DSA in Python!

yeshitamotwani
Автор

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

rajesh
Автор

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

wiijlwq
Автор

Mam please upload patricia topic in data structures mam

BeerakaSharmila
Автор

mam c++ continue kijiye and complete kijiye

Priyanshu_Das
Автор

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

Lets_code_together_
Автор

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

akshithahirakari
Автор

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

jauharzahir
Автор

Madam you know i can see angel in youtube channel

funvlogs