Important Notice:

Course Content
The Calendar Module
Library Function/Predefined Functions
0/4
Sys Module
Library Function/Predefined Functions
0/2
OS Module
Library Function/Predefined Functions
0/2
Functions in Python (Chapter-10) M3-R5
About Lesson

Global variable:-

               वह variable जो किसी function के अन्दर define न किया गया हो, global variable कहलाता है यह variable सामान्यत: function के ऊपर define किया जाता है global variable को पूरे program में access तथा modify किया जा सकता है।

a=20     —————> global variable

def fun():

    a=10      —————> local variable

    print(a)

fun()

print(a)

 

Global keyword:-

                Python में global keyword का use local variable को global variable की तरह declare करने के लिए किया जाता है

def fun():

    global a

    a=10

fun()

print(a)

 

 

Global variable:-

                 The variable which is not defined inside any function is called a global variable. This variable is usually defined above the function. The global variable can be accessed and modified throughout the program.

a=20    —————>  global variable

def fun():

    a=10    —————> local variable

    print(a)

fun()

print(a)

 

Global keyword:-

               In Python, the global keyword is used to declare a local variable as a global variable.

def fun():

    global a

    a=10

fun()

print(a)

 

error: Content is protected !!