Python Programming
Python Programming
Grade XI
Informatics Practices
Python Programming
Applications:
1. To developed AI application
2. Data science
3. Machine learning, Deep learning
4. To developed Desktop application
5. To developed web application (django,flask)
6. To developed network application, database application
7. Games
Features of Python
Interactive
Object Oriented
GUI Programming Support
Platform Independent
Easy to code
High-Level Language
Identifiers
Variable
Variable is an identifier whose value can change. For example varia-
ble age can have different value for different person. Variable name
should be unique in a program.
We can use an assignment statement to create new variables and
assign specific values to them.
gender = 'M'
message = "Keep Smiling"
price = 987.9
Variables must always be assigned values before they are used in
the program, otherwise it will lead to an error.
Rules
Python variables can only begin with a letter(A-Z/a-z) or an under-
score(_).
The rest of the identifier may contain letters(A-Z/a-z), under-
scores(_), and numbers(0-9).
A variable cannot begin with a number.
No special character used except underscore (_).
Python is case-sensitive, and so are Python identifiers. Name and
name are two different identifiers.
Reserved words (keywords) cannot be used as identifier names.
Python variables do not have to explicitly declare to reserve
memory space. The variable is declared automatically when the
value is assigned to it.
Download
The latest version of Python is available on the official website:
https://www.python. org/
Data Types
Every value belongs to a specific data type in Python. Data type identifies
the type of data which a variable can hold and the operations that can be
performed on those data
Int (Integer):
The int data type specifies that the particular object is an integer.
Syntax:
int <variable_name>
For example:
Specifying int a means that the variable ‘a’ can take any whole number or
integer.
Float:
The float data type is different from the integer data type. It can store
whole number values as well as decimals.
Syntax:
float <variable_name>
For example:
Specifying float marks means that the variable marks can store
whole numbers as well as decimal values like 3.4, 7.8, 35.000.
Note:
Python has the special ability to automatically identify the data type
and treat it in the way that data type has to be treated. For example, if
we create a variable ‘val’ and store 5 in it, it will automatically treat ‘val’
as an integer. Later, if we change the value of ‘val’ from 5 to ‘Hello’,
Python will automatically detect this change and then make ‘val’ a
string data type.
Sequence
Mapping
Mapping is an unordered data type in Python. Currently, there is
only one standard mapping data type in Python called Dictionary.
(A) Dictionary
Dictionary in Python holds data items in key-value pairs and Items
are enclosed in curly brackets { }. dictionaries permit faster access
to data. Every key is separated from its value using a colon (:) sign.
The key value pairs of a dictionary can be accessed using the key.
Keys are usually of string type and their values can be of any data
type. In order to access any value in the dictionary, we have to
specify its key in square brackets [ ].
#create a dictionary
>>> dict1 = {'Fruit':'Apple', 'Climate':'Cold', 'Price(kg)':120}
>>> print(dict1)
{'Fruit': 'Apple', 'Climate': 'Cold', 'Price(kg)': 120}
#getting value by specifying a key
>>> print(dict1['Price(kg)'])
120
Variable declaration
Example:
o >> num1=30
o >>num2=45.78
o >>name=‟bright‟
2. Assigning and Reassigning Python Variables
To assign a value to Python variables, you don‟t need to declare its
type.
You name it according to the rules stated above, and type the value af-
ter the equal sign(=).
o >>> age=7
>>> print(age)
o output: >>>7
o >>> age='Dinosaur'
o >>> print(age)
o output: >>> Dinosaur
As shown in above you can assign multiple different type of value to
one variable.
3. Multiple Assignments
You can assign values to multiple Python variables in one statement.
o >>> age,city=21,'Indore'
o >>> print(age,city)
o output: >>>21 Indore
Or you can assign the same value to multiple Python variables
>>> age=fav=7
o >>> print(age,fav)
o output: >>>7 7
This is how you assign values to Python Variables
4.Swapping Variables
Swapping means interchanging values. To swap Python variables, you
don‟t need to do much.
o >>> a,b='red','blue'
o >>> a,b=b,a
o >>> print(a,b)
o output: >>>blue red
o >>>a,b=7,8
o >>>a,b=b,a
o >>>print(a,b)
o output: >>>8 7
Comments
Python Syntax „Comments‟ let you store tags at the right places in the
code. You can use them to explain complex sections of code.
The interpreter ignores comments. Declare a comment using an octo-
thorpe (#).
>>> #This is a comment
Python does not support general multiline comments like Java or C++.
In C++, we have // for single-lined comments, and /* … */ for multiple-
lined comments. Here, we only have single-lined python comment.
To declare a Python comment, use the hash (#).
o >>> #This is a comment
Here, we can see that the entered value 10 is a string, not a number.
To convert this into a number we can use int() or float() functions.
o >>> int('10')
o 10
o >>> float('10')
o 10.0
Similarly you can covert the input value at the time of input by,
o >>> num = int(input('Enter a number: '))
o Enter a number: 10
o >>> num
o 10
c. Multiplication (*)
Multiplies the values on either side of the operator.
o >>> 3*4
o Output
o 12
D. Division (/)
Divides the value on the left by the one on the right. Notice that divi-
sion results in a floating-point value.
o >>> 3/4
o Output
o 0.75
E. Exponentiation (**)
Raises the first number to the power of the second.
o >>> 3**4
o Output
o 81
f. Floor Division (//)
Divides and returns the integer value of the quotient. It dumps the dig-
its after the decimal.
o >>> 4//3
o Output
o1
o >>> 10//3
o Output
o3
g. Modulus (%)
Divides and returns the value of the remainder.
o >>> 3%4
o Output
o3
o >>> 4%3
o Output
o1
o >>> 10%3
o Output
o1
o >>> 10.5%3
o Output
o 1.5
o False
f. Not equal to (! =)
It checks if the value on the left of the operator is not equal to the one
on the right.
The Python operator <> does the same job, but has been abandoned in
Python 3.
When the condition for a relative operator is fulfilled, it returns true.
Otherwise, it returns False. You can use this return value in a further
statement or expression.
o >>> 1!=1.0
o Output
o False
o >>> -1<>-1.0
o #This causes a syntax error
o >>> print(a)
o Output
o7
b. Add and Assign (+=)
Adds the values on either side and assigns it to the expression on the
left. a+=10 is the same as a=a+10.
The same goes for all the next assignment operators.
o >>> a+=2
o >>> print(a)
o Output
o9
c. Subtract and Assign (-=)
Subtracts the value on the right from the value on the left. Then it as-
signs it to the expression on the left.
o >>> a-=2
o >>> print(a)
o Output
o7
d. Divide and Assign (/=)
Divides the value on the left by the one on the right. Then it assigns it to
the expression on the left.
o >>> a/=7
o >>> print(a)
o Output
o 1.0
o 2.0
g. Exponent and Assign (**=)
Performs exponentiation on the values on either side. Then assigns it to
the expression on the left.
o >>> a**=5
o >>> print(a)
o Output
o 32.0
b. or Operator in Python
The expression is false only if both the statements around the operator
are false. Otherwise, it is true.
o >>> a=7>7 or 2>-1
o >>> print(a)
o Output
o True
o „and‟ returns the first False value or the last value; „or‟ returns the
first True value or the last value
o >>> 7 and 0 or 5
o Output
o5
c. not Operator in Python
This inverts the Boolean value of an expression. It converts True to
False, and False to True.
As you can see below, the Boolean value for 0 is False. So, not inverts it
to True.
o >>> a=not(0)
o >>> print(a)
o Output
o True
o False
o >>> „cat‟ in pets
o Output
o True
o >>> „me‟ in „disappointment‟
o Output
o True
b. not in Operator in Python
Unlike „in‟, „not in‟ checks if a value is not a member of a sequence.
o >>> „pot‟ not in „disappointment‟
o Output
o True
2.1.6 Python Identity Operator: ‘is’ , ‘is not’