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 :+
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))
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...
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)
Greatest teacher ever ❤❤❤❤❤
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 :+
Bro we literally have the same profile picture
@@qasimkhrd4600😂lol
If you cracked jee advanced you probably won't need to seek RUclips tutorial
thats not true, what if he cracked jee adv using youtube@@gdimmortal
Mam please send the complete notes of python
Wow It's wonderful 😮
Mam we want a course in java from basic to advanced and DSA in java also. Mam please consider this request.
yes we need java
My instructor ❤❤❤
Beautiful mam of the year ❤
I have completed my graduation last year I am here only to see you mam😂❤
Thank you so much mam
Please complete full course mam
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 ??
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)
Ma'am plz plz upload next videos! 🙏🙏we all learn so much from you
Mam do you take offline classes also? If yes then what is the location?? please answer
Aftr long time🥰 please do more vedios...
❤
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)
Mam please upload java lcture🙏🙏🙏🙏🙏please please🙏🙏
Mam, please start a course on DSA in Python!
Mam please upload patricia topic in data structures mam
mam c++ continue kijiye and complete kijiye
First comment madam
please Add Audio Track mam.
Madam you know i can see angel in youtube channel
Mam please upload java from basic to advance please mam 🙏😢
Maa'm aren't you going to complete C++?
please complete it.
Assembly language 8086
Continue c++ please
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))
Can you help me?
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)
😢
Just the 9th comment .... my life feels like a low Order Function now :/
Madam yo yantar to mahre paale na pade
Fir bhi kosis kar rha samjne ki
Muje utna samaj nhi aata per aapko denne aata hu ider bass
Madam is beautiful know😅😂😊
U r so beautiful ❤❤
Make video on your skin care health...
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...
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...
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)
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)