Lesson - 24 : Python3 - Python Function : Global variables vs local variables

Veröffentlicht am: 20 Dezember 2017
auf dem Kanal: Sada Learning Hub
54
2

**************************************************
Python Core PlayList :    • Lesson - 01 : Python3 - What is python  
Python Advanced PlayList :    • Lesson - 46 : Python Advanced - Python OOP...  
**************************************************

Python Function : Global variables vs local variables:
Local Variables:
Variables declared inside a function body is known as Local Variable. These have a local access thus these variables cannot be accessed outside the function body in which they are declared.

Global Variable:
Variable defined outside the function is called Global Variable. Global variable is accessed all over program thus global variable have widest accessibility.

Example :
xy = 100
def cool():
    xy = 200     # xy inside the function is totally different from xy outside the function
    print(xy)    # this will print local xy variable i.e 200
 
cool()
 
print(xy)        # this will print global xy variable i.e 100

Sample Projects : https://github.com/SadaLearningHub1/P...


Auf dieser Seite können Sie das Online-Video Lesson - 24 : Python3 - Python Function : Global variables vs local variables mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer Sada Learning Hub 20 Dezember 2017 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 54 Mal angesehen und es wurde von 2 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!