Nested Function in Python (Hindi)

preview_player
Показать описание
Nested Function in Python



Check Out Our Other Playlists:

SUBSCRIBE to Learn Programming Language !

Learn more about subject:

________________________________________________

If you found this video valuable, give it a like.
If you know someone who needs to see it, share it.
If you have questions ask below in comment section.
Add it to a playlist if you want to watch it later.
________________________________________________

T A L K W I T H M E !
_______________________________________________

Make sure you LIKE, SUBSCRIBE, COMMENT, and REQUEST A VIDEO! :)
_______________________________________________
Рекомендации по теме
Комментарии
Автор

hello dear, a special salute to you . you teach in a very descent way. my friend recommend your teturiol to me. now i will recommend it for my other friends. love and bundle of thanks from pakistan.

azimroydar
Автор

This this video I got the concept of execution of
In youtube no one else described the way u explain the things

Great....

soumyaranjanrout
Автор

thank you for uploading...ache se smjh aa gya ab..bht confusion tha isse pehle!

akd
Автор

Bro.... you are I have seen so many videos of python in Youtube but nobody explain the excecution so better. Thank a lot.

MrSpgupta
Автор

# Nested 3 function

def one_func():
def two_func():
print('two function')
def three_func():
print('Three function')
three_func()
print('One function')
two_func()

Output :
One function
two function
Three function

naveenrawat.
Автор

itna step by step break kar k koi nahi batata. hats off sir.

maasaaisarkar
Автор

Had lot of confusion before. Now you've cleared the confusion very easily ❤️thanks sir

lalithav
Автор

Had some confusion earlier but it have helped a lot so, Thank You 💛

cometor_cartel
Автор

kya hi samjaya sir bohat achhese ab mai samaj gaya thank you sir ❤️❤️🎉

sidhckr
Автор

Sir aap jo repeat repeat bolte hona so sabse best teacher hona show karta he or aap yesa karte ho iisi liye aapke sab lecture samjhe ma aate he ok sahi se dimag me ghussta he.

harendrasinhparmar
Автор

bhai....sem exam aane wala hai.
tum bacha liye mujhe.
. thanks 🎉🎉🎉

Seeker
Автор

Code:
a = "py"
b = "thon"
print(a+b)
print(a, b)


output :
python
py thon

Python uses the "+" character and ", ":

shubhamkadam
Автор

If I use following code, it only prints one line, why?
def Outer_fn():
def Inner_fn():
return ("This is Inner Function")
return("This is Outer Function")
print(Inner_fn())
print(Outer_fn())
Output: This is Outer Function

swastikX
Автор

Bhai Yar Diwali to Mana let yar.happy diwali

mavihstricks
Автор

bhai ek sawaal tha : agar function ko variable assign nahi karte hue call karenge to kya wo function result print nahi karega kya ?

sawoodsheikh
Автор

Inner function ko hm outter function se bahar kaise call krenge kya ye call ho payegaa v ?

aaravmaht
Автор

last mei mujhe none likh kar aa raha hai output mei aisa kyun sir???

sairajnaidu