Skip to main content

FUNCTIONS - LOCAL & GLOBAL VARIABLES

 Local Variables

In Python, a local variable is a variable that is defined inside a function and can only be used within that function. It exists only while the function is running, and it disappears after the function finishes execution.

def greet():

    message = "Hello, World!"  # 'message' is a local variable

    print(message)

greet()

# print(message)  # This would cause an error because 'message' is not accessible here


NOTES:

  • message is a local variable because it's defined inside the greet() function.
  • You cannot access message outside the function.
  • Local variables are created when the function is called and are destroyed when the function ends.

Why use local variables?

  • To keep data private to the function.
  • To avoid conflicts with variables in other parts of the program.


 

Global Variables

A global variable is a variable that is defined outside of any function and can be accessed from anywhere in the program.

message = "Hello, World!"  # This is a global variable

def greet():

    print(message)  # Accessing the global variable inside the function

greet()

print(message)  # Also accessible outside the function

 

output:

Hello, World!

Hello, World!

 

Modifying Global Variables Inside a Function:

If you want to change the value of a global variable inside a function, you must use the global keyword:

count = 0  # Global variable

def increment():

    global count

    count += 1  # Modifying the global variable

increment()

print(count)  # Output: 1

 

 Q. Difference between :

Local VariableGlobal Variable
Defined inside a function             Defined outside any function
Accessible only in function            Accessible throughout the program
Created when function runs            Created when program starts
Destroyed after function ends            Exists until program ends

Comments

Popular posts from this blog

GRADE XII - Python Connectivity with MySQL

  Python Connectivity with MySQL In real-life applications, the data inputted by the user and processed by the application needs to be saved permanently, so that it can be used for future manipulation. Usually, input and output data is displayed during execution but not stored, as it resides in main memory , which is temporary — i.e., it gets erased once the application is closed. This limitation can be overcome by sending the data to be stored in a database , which is made accessible to the user through a Front-End interface . Key Concepts Database A database is an organized collection of data that is stored and accessed electronically from a computer system. DBMS (Database Management System) A DBMS is software that interacts with end-users, applications, and the database to capture and analyze data. Front-End The Front-End is the user interface of the application, responsible for input/output interaction with the user. Back-End The Back-End refe...

GRADE XII - CSV FILE

CSV FILE (COMMA SEPERATED VALUE) CSV NOTES LINK :  CSV NOTES - CLICK HERE Writing data to a CSV file involves the following steps: Import the csv module Open the CSV file in write mode ( "w" ) using open() Create the writer object Write the data into the file using the writer object Close the file using close() writerow() Method This method is used to write a single row to a CSV file. It takes a sequence (list or tuple) as its parameter, and writes the items as a comma-separated line in the file. You do not need to add a newline character (\n) — it automatically places the end-of-line marker.     EXAMPLE 1: import csv  # Importing the csv module # CSV file opened using relative path csv_fobj = open("emp.csv", "w")   # Writer object created wtr_obj = csv.writer(csv_fobj) # Record with field heading is written wtr_obj.writerow(["Empno", "Name", "Salary"]) # Records with data are...