Jcs2201-Python Programming Unit-I Notes
Jcs2201-Python Programming Unit-I Notes
Introduction to Python
The syntax of the Python programming language is the set of rules which defines how a
Python program will be written.
What is python?
History
⮚ The name Python was selected from "Monty Python’s Flying Circus" which was a British
sketch comedy series created by the comedy group Monty Python and broadcast by the BBC
from 1969 to 1974.
⮚ Python was created in the early 1990s by Guido van Rossum at the National Research
Institute for Mathematics and Computer Science in Netherlands.
⮚ Python was created as a successor of a language called ABC (All Basic Code) and released
publicly in1991. Guido remains Python’s principal author, although it includes many
contributions from active user community.
⮚ Between 1991 and 2001 there are several versions released, current stable release is 3.2.
In 2001 the Python Software Foundation (PSF) was formed, a non-profit organization
created specifically to own Python-related Intellectual Property. Zope Corporation is a
sponsoring member of the PSF.
Features of Python
⮚ It means that you can use python to write code for any program task.
⮚ Nowadays, python is used in google, NASA, New York stock exchange.
2. Interpreted :
⮚ Python programs are interpreted, takes source code as input, by the interpreter (to
portable byte-code) one statement at a time and executes it immediately.
⮚ No need to compiling or linking.
3. Object-Oriented :
⮚ Data in python are object created from class. A class is essentially a type or category
that define objects of same kind with properties and methods for manipulating objects.
⮚ Python is a full-featured object-oriented programming language, with features such as
classes, inheritance, objects, and overloading.
4. Open source:
⮚ Python is publicly available open source software, anyone can use source code that
doesn’t cost anything.
5. Easy-to-learn :
6. Portable :
⮚ High level languages are portable, which means they are able to run across all major
hardware and software platforms with few or no change in source code. ⮚ Python is
portable and can be used on Linux, Windows, Macintosh, Solaris, FreeBSD, OS/2,
Amiga, AROS, AS/400 and many more.
7. High-level Language :
⮚ High-level language (closer to human) refers to the higher level of concept from
machine language (for example assembly languages).
⮚ Python is an example of a high-level language like C, C++, Perl, and Java with low
level optimization.
8. Python is Interactive :
⮚ Python has an interactive console where you get a Python prompt (command line) and
interact with the interpreter directly to write and test your programs.
⮚ This is useful for mathematical programming.
9. Extendable :
INSTALLATION OF PYTHON
Python is a widely used high-level programming language. To write and execute code
in python, we first need to install Python on our system.
Python has various versions available with differences between the syntax and working of
different versions of the language. We need to choose the version which we want to use or
need. There are different versions of Python 2 and Python 3 available.
Step 2 − Download Python Executable Installer
On the web browser, in the official site of python (www.python.org), move to the Download
for Windows section.
All the available versions of Python will be listed. Select the version required by you and click
on Download. Let suppose, we chose the Python 3.9.1 version.
On clicking download, various available executable installers shall be visible with different
operating system specifications. Choose the installer which suits your system operating system
and download the installer. Let suppose, we select the Windows installer(64 bits).
Run the installer. Make sure to select both the checkboxes at the bottom and then click Install
New.
On clicking the Install Now, The installation process starts.
The installation process will take few minutes to complete and once the installation is
successful, the following screen is displayed.
Step 4 − Verify Python is installed on Windows
To ensure if Python is succesfully installed on your system. Follow
the given steps − ∙ Open the command prompt.
∙ Type ‘python’ and press enter.
∙ The version of the python which you have installed will be displayed if the python is
successfully installed on your windows.
Python programmers must know every possible way to run the Python scripts or code. This is
the only way to verify whether code is working as we want. Python Interpreter is responsible for
executing the Python scripts. Python interpreter is a piece of software which works between the
Python program and computer hardware
We can run the Python code using a command line because in Python shell once we close the
session, we will lose the complete code that we have written. So it is good to write a Python
code using the plain text files. The text file must save as .py extension.
Comments in Python
A comment begins with a hash character (#) which is not a part of the string literal and ends at
the end of the physical line. All characters after the # character up to the end of the line are part
of the comment and the Python interpreter ignores them. See the following example. It should
be noted that Python has no multi-lines or block comments facility.
Joining two lines
When you want to write a long code in a single line you can break the logical line in two or
more physical lines using backslash character (\). Therefore, when a physical line ends with
a backslash characters(\) and not a part of a string literal or comment then it can join
another physical line. See the following example.
You can write two separate statements into a single line using a semicolon (;) character between
two line.
Indentation
Python uses whitespace (spaces and tabs) to define program blocks whereas other languages
like C, C++ use braces ({}) to indicate blocks of codes for class, functions or flow control. The
number of whitespaces (spaces and tabs) in the indentation is not fixed, but all statements
within the block must be the indented same amount. In the following program, the block
statements have no indentation.
TOKENS
Def: The smallest individual unit element in the program is known as token or lexical unit.
2. Identifiers
3. Literals
4. Operators
5. Punctuators
6. Special characters
1. Keywords:
⮚ Keyword is also reserved words that have particular meaning and usage in the language.
⮚ User cannot edit the meaning or usage of the keywords he can only able to use them.
⮚ Keywords cannot be used as a identifier or variable name.
⮚ Following table contains the keywords of the python.
As elif if or yield
Identifiers:
⮚ It is the fundamental building blocks of program and are used as general terminology for
names given to different parts of the program viz, variables, objects, classes, function, list,
dictionaries, etc
Variables
3. Literals:
⮚ Literals are data items that have fixed value. Python allows several kinds of literals:
1. String literals
2. Numeric literals
3. Boolean literals
4. Special None
Please refer above topic 2.2 Values & types for example and notes.
4. Punctuators:
⮚ Punctuators are the symbols used in programming language to organize sentence structure,
and indicate the rhythm and emphasis of expressions, statements, and program structure.
⮚ Examples: “‘#\()[]{},:.`=;
5. Special characters in strings
The backslash (\) character is used to introduce a special character. See the following table.
Escape Meaning
sequence
\n Newline
\t Horizontal Tab
\\ Backslash
Python Interpreter
In interactive mode, type Python programs and the interpreter displays the
result: ∙ Type python into your terminal's command line.
After a short message, the >>> symbol will appear.
The above symbol signals the start of a Python interpreter's command
line. ∙ Python interpreter evaluates inputs.
(For example >>> 4*(6-2) return 16)
Python uses whitespace (spaces and tabs) to define program blocks whereas other languages
like C, C++ use braces ({}) to indicate blocks of codes for class, functions or flow control.
The number of whitespaces (spaces and tabs) in the indentation is not fixed, but all statements
within the block must be the indented same amount. In the following program, the block
statements have no indentation.
COMMENTS
As programs get bigger and more complicated, they get more difficult to read. Formal languages are dense,
and it is often difficult to look at a piece of code and figure out what it is doing, or why.
For this reason, it is a good idea to add notes to your programs to explain in natural language what the
program is doing. These notes are called comments, and they start with the # symbol
#This is a comment
#print out Hello
print('Hello')
⮚Everything from the # to the end of the line is ignored—it has no effect on the execution of
the program.
⮚Comments are most useful when they document non-obvious features of the code. It is
reasonable to assume that the reader can figure out what the code does; it is more useful to
explain why.
⮚Another way of doing this is to use triple quotes, either ''' or """.
⮚These triple quotes are generally used for multi-line strings. But they can be used
as multi-line comment as well. Unless they are not docstrings, they do not
generate any extra code.
⮚"""This is also a
⮚perfect example of
⮚multi-line comments"""
⮚Good variable names can reduce the need for comments, but long names can make
complex expressions hard to read, so there is a tradeoff.
Variables
Datatypes are means to identify the type of data and associated operations of handling it.Python
offers following built in core data types:
1. Numbers ( Int, float, complex numbers)
2. Bool or Boolean
3. String
4. List
5. Tuples
6. Dictionary
7. None
Definition of value:
⮚A value is one of the basic things a program works with, like a letter or a number. Some
values we have seen so far are 2, 42.0, and 'Hello, World!'.
Definition of types:
⮚Type represents the kind of value and determines how the value can be used. All data values
in Python are encapsulated in relevant object classes.
⮚Everything in Python is an object and every object has an identity, a type, and a value.
⮚Like another object-oriented language such as Java or C++, there are several data types
which are built into Python.
⮚Extension modules which are written in C, Java, or other languages can define additional
types.
⮚To determine a variable's type in Python you can use the type() function. The value of
some objects can be changed. Objects whose value can be changed are called mutable
and objects whose value is unchangeable (once they are created) are called immutable.
Here are the details of Python data types.
Python defines type conversion functions to directly convert one data type to another which is
useful in day-to-day and competitive programming. This article is aimed at providing information
about certain conversion functions.
x = 10
print("x is of type:",type(x))
y = 10.6
print("y is of type:",type(y))
z=x+y
print(z)
print("z is of type:",type(z))
Output
x is of type: <class 'int'>
y is of type: <class 'float'>
20.6
z is of type: <class 'float'>
Explicit Type Conversion in Python
In Explicit Type Conversion in Python, the data type is manually changed by the user as per
their requirement. With explicit type conversion, there is a risk of data loss since we are forcing an
expression to be changed in some specific data type.
Example:
# initializing string
s = "10010"
c = int(s,2)
print (c)
e = float(s)
print (e)
Output:
After converting to integer base 2 : 18
After converting to float : 10010.0
Python Type conversion using tuple(), set(), list()
# initializing string
s = 'Study'
c = tuple(s)
print (c)
c = set(s)
print (c)
c = list(s)
print (c)
Output:
After converting string to tuple : ('s', 't', 'u', 'd', 'y')
After converting string to set : {'d', 'u', 'y', 's'}
After converting string to list : ['s', 't', 'u', 'd', 'y']
Python code to demonstrate Type conversion using dict(), complex(), str()
dict(): This function is used to convert a tuple of order (key, value) into a dictionary.
str(): Used to convert an integer into a string.
complex(real,imag) : This function converts real numbers to complex(real, imag) number.
# initializing integers
a=1
b=2
# initializing tuple
c = complex(1,2)
print (c)
c = str(a)
print (c)
c = dict(tup)
print (c)
Output:
After converting integer to complex number : (1+2j)
After converting integer to string : 1
After converting tuple to dictionary : {'a': 1, 'f': 2, 'g': 3}
OPERATORS AND ITS PRECEDENCE
Python Operators
Arithmetic operators
Assignment operators
Comparison operators
Logical operators
Identity operators
Membership operators
Bitwise operators
Identity operators are used to compare the objects, not if they are equal, but if they are actually the same
Example
Parentheses has the highest precedence, meaning that expressions inside parentheses must be evaluated first:
print((6 + 3) - (6 + 3))
Example
Multiplication * has higher precedence than addition +, and therefor multiplications are evaluated
before additions:
print(100 + 5 * 3)
EXPRESSIONS IN PYTHON
An expression is a combination of operators and operands that is interpreted to produce some other
value. In any programming language, an expression is evaluated as per the precedence of its operators. So
that if there is more than one operator in an expression, their precedence decides which operation will be
performed first. We have many different types of expressions in Python. Let’s discuss all types along with
some exemplar codes:
1. Constant Expressions: These are the expressions that have constant values only.
# Constant Expressions
x = 15 + 1.3
print(x)
2. Arithmetic Expressions: An arithmetic expression is a combination of numeric values, operators, and
sometimes parenthesis. The result of this type of expression is also a numeric value. The operators used in
these expressions are arithmetic operators like addition, subtraction, etc. Here are some arithmetic operators
in Python:
Example:
# Arithmetic Expressions
x = 40
y = 12
add = x + y
sub = x - y
pro = x * y
div = x / y
print(add)
print(sub)
print(pro)
print(div)
Output
52
28
480
3.3333333333333335
3. Integral Expressions: These are the kind of expressions that produce only integer results after
all computations and type conversions.
Example:
# Integral Expressions
a = 13
b = 12.0
c = a + int(b)
print(c)
Output
25
4. Floating Expressions: These are the kind of expressions which produce floating point numbers as
result after all computations and type conversions.
Example:
# Floating Expressions
a = 13
b=5
c=a/b
print(c)
Output
2.6
5. Relational Expressions: In these types of expressions, arithmetic expressions are written on both sides
of relational operator (>, < , >= , <=). Those arithmetic expressions are evaluated first, and then
compared as per relational operator and produce a boolean output in the end. These expressions are also
called Boolean expressions.
Example:
# Relational Expressions
a = 21
b = 13
c = 40
d = 37
p = (a + b) >= (c - d)
print(p)
Output
True
6. Logical Expressions: These are kinds of expressions that result in either True or False. It basically
specifies one or more conditions. For example, (10 == 9) is a condition if 10 is equal to 9. As we know it
is not correct, so it will return False. Studying logical expressions, we also come across some logical
operators which can be seen in logical expressions most often. Here are some logical operators in Python:
Example:
P = (10 == 9)
Q = (7 > 5)
# Logical Expressions
R = P and Q
S = P or Q
T = not P
print(R)
print(S)
print(T)
Output
False
True
True
7. Bitwise Expressions: These are the kind of expressions in which computations are performed at bit level.
Example:
# Bitwise Expressions
a = 12
x = a >> 2
y = a << 1
print(x, y)
Output
3 24
8. Combinational Expressions: We can also use different types of expressions in a single expression, and that
will be termed as combinational expressions.
Example:
# Combinational Expressions
a = 16
b = 12
c = a + (b >> 1)
print(c)
Output
22
Multiple operators in expression (Operator Precedence)
Operator Precedence simply defines the priority of operators that which operator is to be executed
first. Here we see the operator precedence in Python, where the operator higher in the list has more
precedence or priority:
1 Parenthesis ()[]{}
2 Exponentiation **
8 Bitwise XOR ^
9 Bitwise OR |
11 Equality Operators == !=
12 Assignment Operators = += -= /= *=
# Multi-operator expression
a = 10 + 3 * 4
print(a)
b = (10 + 3) * 4
print(b)
c = 10 + (3 * 4)
print(c)
Output
22
52
22
Input() Function
We can use the input() function to take input from the user.
# take user input
name = input()
print(name)
We can also print a message inside the input() function to let users know what they need to enter.
# displaying prompt message before taking input
name = input("Enter name: ")
print(name)
Output:
Enter name: computer
computer
Numeric Input
In Python, the input() function always takes input as a string. We can check this by using the type() function.
print(type(number))
Output
<class 'str'>
Python print()
The print() function prints specified values and variables to the screen.
# print a string
print('Harry Potter')
# print a number
print(50)
number = 400
# print a variable
print(number)
goals = '100'
Output:
Harry Potter
50
400
Ronaldo has reached 100 goals
Here,
The first print statement prints a string, the second prints an integer, and the third one prints a variable.
The final print statement takes a string variable and prints it along with the rest of the string in the statement.
COMMAND-LINE ARGUMENTS:
The arguments that are given after the name of the program in the command line shell of the operating
system are known as Command Line Arguments. Python provides various ways of dealing with these types
of arguments. The three most common are:
Using sys.argv
Using getopt module
Using argparse module
Using sys.argv
The sys module provides functions and variables used to manipulate different parts of the Python runtime
environment. This module provides access to some variables used or maintained by the interpreter and to
functions that interact strongly with the interpreter.
One such variable is sys.argv which is a simple list structure. It’s main purpose are:
import sys
# total arguments
n = len(sys.argv)
# Arguments passed
print("\nName of Python script:", sys.argv[0])
# Addition of numbers
Sum = 0
Sum += int(sys.argv[i])
print("\n\nResult:", Sum)
Output:
Example:
argumentList = sys.argv[1:]
# Options
options = "hmo:"
# Long options
try:
# Parsing argument
print (str(err))
Output:
------------------------------------------------------------