Variables are used as containers or boxes (of real world) in our Python program. Variable stores our data.
Rules to create variables in Python.
Name starts with lower or upper case chars or underscore _
Can’t start with number
Can contain number , underscore ,char
No length restriction
Can reassign to different types.
Case sensitive
Reserved words can’t be used ( What are reserved words ?)
Must assign before using
Operations within similar variables
Scope of Variables
Python variables declaration and naming conventions with rules with sample code using google colab.
Data type of Python variables
Each variable we create or use, belongs to one data type. In Python we can say all data types are Classes and variables are objects of these classes.
i=5
In above line we are saying variable i is an integer variable or i is an object of integer class. Different Data types in Python→
identifiers
Identifiers are name given to python objects like variables, functions, class , modules etc. ( Variables are one type of identifiers )
There are rules for the identifiers.
Only lower or upper case chars , digits and underscore are allowed.
We can't start identifier name with digit.
$ , # , @, !, %,special chars and space can't be used with identifiers
The function type() returns the variable type ( integer, float, string etc ) If a variable is used as Integer, if subsequently we assign string value to it, then the variable type will change to string.
This feature is not allowed in may other programming languages
Python has a list of reserved words. We can't use the reserved words as our variable name. We can't use local, nonlocal, global as variable names as these are reserved keywords in Python.
Check the code above, since we have not assigned or used the variable my_end_name before so the line print(my_2nd_name) generates error. ( Variables are case sensitive )
Operations within similar variables
This code will generate error as we can't add integer and a string.
a=45
b="Hello"
#b=5
print(a+b)
TypeError: unsupported operand type(s) for +: 'int' and 'str'
If we un-comment the line saying b=5 , then output we will get is 50.
We can convert string to integer by using int() function and use str() to convert integer to string variable.
a='45' # a is a string variable , it is not an integer
b=42
#print(a+b) # error, as we can't add one string with integer variable
print(a+str(b)) # this is fine
print(int(a)+b) # this is fine
Swap the values of variables x and y without using a temporary variable.
x=5
y=10
x,y=y,x
print(x,y) # 10 5
Choose clear and descriptive variable names to instantly understand their purpose while reading the code.
Can we use the variable in different programs? Answer is No , the variable is no more available after the program is terminated. Even within the program, there is a difference between availability of local variables and global variable.
my_name='plus2net'# String variable
x,y,*z = my_name
print(x) # p
print(y) # l
print(z) # ['u', 's', '2', 'n', 'e', 't']
Example of List Packing
Packing can also be applied to lists. In this example, we'll pack several values into a single list variable.
# Packing multiple values into a single list variable
name, age, country = 'Alice', 30, 'India'
profile = [name, age, country]
print(profile) # Output: ['Alice', 30, 'India']
Here, the variables name, age, and country are packed into a single list named profile. This demonstrates how you can efficiently group related information into a list structure, facilitating the management and manipulation of data in Python.
deleting variable
In python all are objects only. Here is one integer object a ( variable ) . We will delete the object by using del and again try to print the value.
a=6
try:
print(a) # 6
del a
print(a) # error
except NameError as my_msg:
print ("This is a NameError")
print(my_msg)
except:
print ("Some other error has occured")
try:
my_var # variable to check
except NameError:
print("Not defined !")
else:
print("Yes, it was defined.")
Constants
There is no declaration of constant in Python, ( constant is NOT included as a reserved word in Python ) we can reassign the value of such variables after declaring.
constant=9 # No error
print(constant) # 9
By convention, we declare variables that should not be reassigned with values in uppercase.
SCHOOL_NAME='Name of school'
Usually we keep these constant in a separate .py file and import to main script. This way different files can use the same values.