Unit - I: Pragati Engineering College, Surampalem (Autonomous) Computer Science and Engineering B.Tech Ii Year I Semester
Unit - I: Pragati Engineering College, Surampalem (Autonomous) Computer Science and Engineering B.Tech Ii Year I Semester
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
UNIT – I
1
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
2
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
3
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
4
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
5
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
6
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
D:\Python>python
Python 3.6.0 (v3.6.0:41df79263a11,
Dec 23 2016, 07:18:10) [MSC v.1900
32 bit (Intel)] on win32
Type "help", "copyright", "credits" or
"license" for more information.
>>> 10
10
>>> 35.76
35.76
>>> 'abcd'
'abcd'
>>> 1,00,000
In Python, “type” keyword is used to get the data type assigned to the input data.
(1, 0, 0)
>>> type(100)
<class 'int'>
>>> type(15.27)
<class 'float'>
>>> type('abcd')
<class 'str'>
The “bool” data type contains two possible values viz., “True” and “False”.
>>> bool
<class 'bool'>
The “False” value can be considered in any one of the following cases.
If the value is “None”
If the value is “0” or “0.0”
If the input value is empty list, tuple or string.
7
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
>>> bool('a')
True
>>> bool('')
False
In Python, variables can be initialized without declaration. Based on the value of the input data,
the type of the variable will be automatically considered. A variable name should start with a
letter followed by sequence of letters, numbers or underscore (_) special character.
Integer data, floating point data and string data will be considered as primitive data type.
Character data will be considered as string data with length 1.
>>> a=65
>>> b=78.24
>>>c='hai'
>>>a
65
>>>b
78.24
>>>c
‘hai’
In Python, the string data will be considered as an array. The array index will start from 0.
>>> a='chapter-2'
>>> a
'chapter-2'
>>> a[1]
'h'
>>> a[0]
'c'
>>> a[5]
'e'
8
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
For string data, ‘+’ represents the concatenation operation and ‘*’ represents the repetition
operation.
>>> a=('ha'+'i')
>>> a
'hai'
>>> a=('ha'*2)
>>> a
'haha'
Other than the primitive variables, Python also supports the following variables.
>>> x=(4,5,6)
>>> x[0]
4
>>> x[1]
5
>>> x[-1]
6
>>> x[2]
6
The index ‘-1’ represents the last element in the tuple. In case of tuple variable, the change of the
values is not permitted.
>>> x[2]=10
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
9
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
Lists:
It is different than tuple. A list without a fixed number of elements. It uses square brackets for
specification of data. The change of values of a list variable is allowed.
>>> x=[4,5,6]
>>> x[0]
4
>>> x[1]
5
>>> x[-1]
6
>>> x[2]
6
>>> x[0]=10
>>> x
[10, 5, 6]
Dictionaries:
It is a variable used to maintain multiple typed elements. It uses curly braces for specification of
data. It maintains the data by using {key:value,…} format. Multiple entries will be separated by
the comma operator. The change of values is allowed.
>>> x={1:'a',2:2,3:5.8}
>>> x
{1: 'a', 2: 2, 3: 5.8}
>>> x[1]
'a'
>>> x[2]
2
>>> x[3]
5.8
>>> x[1]='b'
>>> x 10
b=20
print("Value of B=",b)
del(a)
print("Value of A=",a)
Output:
D:\PythonPrograms>python del.py
Value of B= 20
Traceback (most recent call last):
File "del.py", line 3, in <module>
del(a)
NameError: name 'a' is not defined
In Python programming language, there are three types of numerical objects. They are
i. integers
ii. floating point numbers
iii. complex numbers
2.10. Integers
The integers represent the fixed point numerical data. So, it maintains integer numbers
with no decimal point. In early versions, there are integers and long integers. But in version3,
11
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
only int with unlimited size is allowed. With this both the positive and negative numbers can be
represented. A subset of integers is allowed to represent the Boolean values. An integer value
can be represented in binary, decimal, hexa-decimal or octal form.
12
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
float() function will convert and returns the input data to a real number. It requires one
argument.
complex() will convert and returns the input data to a complex number. It can take one or
two arguments. If one argument is provided then it will be placed in real value with zero
imaginary value. If two are provided then they will be considered for both the real and
imaginary values.
Various mathematical functions are defined in math module and are listed below.
The ‘ceil(arg1)’ function will return the ceiling value of the argument (arg1)
The ‘fabs(arg1)’ function will return the absolute value of the input float arg1.
The ‘abs(arg1)’ function will return the absolute value of the input integer arg1.
The ‘floor(arg1)’ function will return the floor value of the arg1.
The ‘copysign(arg1,arg2)’ function will copy the sign of y into x.
The ‘isinf(arg1)’ function will return the TRUE if arg1 is infinity otherwise returns
FLASE.
The ‘isnan(arg1)’ function will return the TRUE if arg1 is a NaN otherwise returns
FLASE.
The ‘exp(arg1)’ function returns the exponential value of arg1.
The ‘log2(arg1)’ function returns the log2 value of arg1.
The ‘pow(arg1,arg2)’ function returns the arg1arg2 value.
The ‘acos(arg1)’ function returns the arc cosine value of arg1.
The ‘sin(arg1)’ function returns the sine value of arg1.
The ‘atan(arg1)’ function returns the arc tangent value of arg1.
The ‘radians(arg1)’ function returns the radian value of arg1(degrees)
The ‘pi’ is a mathematical constant used to represent the π value
The ‘e’ is a mathematical constant used to represent the constant value of ‘e’
13
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
15
PRAGATI ENGINEERING COLLEGE, SURAMPALEM
(Autonomous)
COMPUTER SCIENCE AND ENGINEERING
B.TECH II YEAR I SEMESTER
TokenError
SyntaxError
TimeLimitError
IndentationError
AttributeError
ImportError
IndexError
ParseError
Parse errors happen when you make an error in the syntax of your program. Syntax errors
are like making grammatical errors in writing. If you don’t use periods and commas in your
writing then you are making it hard for other readers to figure out what you are trying to say.
Similarly Python has certain grammatical rules that must be followed or else Python can’t figure
out what you are trying to say. Usually ParseErrors can be traced back to missing punctuation
characters, such as parentheses, quotation marks, or commas. Remember that in Python commas
are used to separate parameters to functions. Paretheses must be balanced, or else Python thinks
that you are trying to include everything that follows as a parameter to some function.
TypeError
TypeErrors occur when you try to combine two objects that are not compatible. For
example you try to add together an integer and a string. Usually type errors can be isolated to
lines that are using mathematical operators, and usually the line number given by the error
message is an accurate indication of the line.
NameError
Name errors almost always mean that you have used a variable before it has a value.
Often NameErrors are simply caused by typos in your code. They can be hard to spot if you
don’t have a good eye for catching spelling mistakes. Other times you may simply mis-
remember the name of a variable or even a function you want to call.
ValueError
Value errors occur when you pass a parameter to a function and the function is expecting
a certain limitations on the values, and the value passed is not compatible.
16