Thank you so much sir . i watched 20 to 30 videos but am not able to understand, but when i started watching your video my basic python is completed and all my doubt are cleared, feeling happy to understand...once again thanks a lot sir... if you are teaching programming language I want to take admission please response sir how can I take admission??????
One doubt--- functiin ke andar jo variable lete hain..example-a and b. To hame wahi variable lena chahiye jab ham user se input lena chahunga tab. ya.. Alag koyi variable le sakte hain
Sir ek help chahiye , Mere pass ek list he [15,65,46,84,52,78,98,32,85,22,75,68] Usme 2 players he jese he user number dalege players 1 me or vo number list me se kisi bhi number se match huva to vo player's 1 ki list me print hona chahiye Or match nahi hita he to players 2 ki bari uska bhi same process , ese kar k dono players mese jiske 6 input list k number se sabse pehle match huve vo jitega , ye program kese karenge ? Random module ka use he isme.
hello sir hope u r fine. Sir im not able to understand following outputs. Plz have a look: def list1(a): for i in a: return i print(list1([1,2,3,4])) output- 1 def list1(a): for i in a: print(i) list1([1,2,3,4]) output: 1 2 3 4 i have understood that after return command it will go in list([1,2,3,4]) then it will print and then der is no code written so it stop. But what about for loop, if the is having for loop then it should proceed further na?
When a return statement is encountered, the function execution is terminated and the value is returned to its calling place. So nothing will be executed after return statement is encountered in a function.
def add: (ye wala wrong bata raha hai without argument me) def add(): (lekin ye wala sahi ho raha hai aisha ku without argument me hi explian kijiyega replay me)
Excellent teaching. I recommend this channel for beginners.
Thanks Rahul😊
Sir ap owsm ho yr itna polite behaviour bhai ksm se yr no.1 teacher ho , love you man
😊🙏
Your videos are very clear.
U teach well sir
. Thnk u so much
Thanks and welcome🙂
sir aap bahut acha sikhate apka explain karneka tarikha bahut hi badhiya he 😍🥰
Great sir.. extreme level of teaching .. understand very well with u sir
Glad to hear that!
I am very confused but after watching I cleared my doubt 🙏
nice sir i understood.
App itne smart LG rhe h python ke series Mai Ki jyda Nazar appe ja rha Hai code Ji jgh
Thanks a lot
🙏
Tomorrow my I.P exam my doubts are clear thank you so much sir
Good, how was your exam?
Ek number sir
Thanks suyog.. Please share this with your friends... :)
Very great video Thanks
Always welcome Badal!
thank you sir
Excellent sir 🙏
Nice video hai sir ❤❤
😊🙏
Thank you so much sir . i watched 20 to 30 videos but am not able to understand, but when i started watching your video my basic python is completed and all my doubt are cleared, feeling happy to understand...once again thanks a lot sir... if you are teaching programming language I want to take admission please response sir how can I take admission??????
This vedio is helpfull
Thank u your lectures are crystal clear......
Most welcome😊
Thanks sir your video is very knowledgeable
Most welcome shiva, keep learning!
Grt explanation..
Thanks!
#no arguement no return
def add():
a=int(input("enter 1st number"))
b=int(input("enter second number"))
c=a+b
print("sum=", c)
add()
#with arguement no return
def addi(a,b):
c=a+b
print("sum=", c)
#x=int(input("enter 1no")) 2 ways to write
#y=int(input("enter 2no"))
addi(9,1)
#no argument with return
def add():
a=int(input("enter 1no"))
b=int(input("enter 2no"))
c=a+b
return c
z=add()
print("summ=", z)
#with argument with return
def add(a,b):
c=a+b
return c
x=int(input("enter 1 no"))
y=int(input("enter 2 no"))
z=add(x,y)
print("sum=", z)
thanks sir😀
Most welcome!
Thanks 🙏 for making this video because I was going to ask u this only .. that what's the difference between all 4 of them 😅😅
Most welcome Praful, keep learning😊
best explanation. thank you sir
Thanks & most welcome Argha!
Sir please explain concept of oops in python
Sir table printout kaise kare considering NAWR and WAWR. Please share
Well explained by you till now on the RUclips platform. Keep it up
Thanks dear.. keep learning keep supporting!!!
Practical karke dikha dete to zada acche se samjh aata sir
Sir please make a video using loop along with NAWR and WAWR.. I am unable to solve
sir i want to see two more program about fuction and sir plz add it to this playlist only
I think there are many programs in the playlist already related to functions Rishabh.
Sir please teach one more time.
Nice
Thanks 😊
One doubt--- functiin ke andar jo variable lete hain..example-a and b.
To hame wahi variable lena chahiye jab ham user se input lena chahunga tab. ya.. Alag koyi variable le sakte hain
Nahi aisa koi jaruri nahi hota hai !
Sir ek help chahiye ,
Mere pass ek list he [15,65,46,84,52,78,98,32,85,22,75,68]
Usme 2 players he jese he user number dalege players 1 me or vo number list me se kisi bhi number se match huva to vo player's 1 ki list me print hona chahiye
Or match nahi hita he to players 2 ki bari uska bhi same process , ese kar k dono players mese jiske 6 input list k number se sabse pehle match huve vo jitega , ye program kese karenge ? Random module ka use he isme.
Why are you not put () after def add
Just make some lively program and call the argument so that we get a better idea,..
Okk Geeta !
With practical samghaye sir
Just watch the next video, you will find with practical example.
Speed bhi change nahi kar sakte hai
Make videos in python oops concept please sir .... I have lots of doubt in oops... Actually i don't know oops... Please sir help me
Gradually I will complete every topic. Don't worry.🙂
❤️
🙂
Sir... return wala vdo kahan pe hai??....part 43 missing
ruclips.net/video/c90N3d9mTwQ/видео.html
@@codeitup this vdo has been deleted in the full python course.....
@@codeitup 😕😕
Bro what " return " do there?
Practice karwa do sir function p
Sir return kya hota hai
hello sir hope u r fine. Sir im not able to understand following outputs. Plz have a look:
def list1(a):
for i in a:
return i
print(list1([1,2,3,4])) output- 1
def list1(a):
for i in a:
print(i)
list1([1,2,3,4])
output:
1
2
3
4
i have understood that after return command it will go in list([1,2,3,4]) then it will print and then der is no code written so it stop. But what about for loop, if the is having for loop then it should proceed further na?
When a return statement is encountered, the function execution is terminated and the value is returned to its calling place. So nothing will be executed after return statement is encountered in a function.
@@codeitup now got it...thanks for ur help
@@shivanshsingh5555 Keep Learning..
def add :
a=int(input("enter 1st number"))
b=int(input("enter 2nd number"))
c=a+b
print("addition=",c)
add( )
with method syntax error de rha hai sir
After add put ()
def add():
Sir your without argument function Syntex is wrong in the first line
Yes apologize for the same. I forgot to put there ( ).
@@codeitup thanks to reply me sir
I am trying to learn function but I don't know why I can learn it completly
def add: (ye wala wrong bata raha hai without argument me)
def add(): (lekin ye wala sahi ho raha hai aisha ku without argument me hi explian kijiyega replay me)
Sir mujhe samjh nahi aaya ki return ka actual use kya hai.....jab uske bina kam ban rha hai.
Srijan, there are many ways to solve one question. Return karna ya na karna completely aapki marji hoti hai.
Sir jyadA samajh nahi aaya
please sir check my coments
Ok