Python Report
Python Report
On
Python and it’s Libraries
Under the Guidance of
Done By
SHUBHAM YADAV
(1573613037)
At
Submitted To
Mission
Vision
DSP, VLSI, Embedded and Software testing are one of the fastest
growing areas in IT across the globe. Our vision is to create a
platform, where trainees/students are able to learn different features
of technologies to secure a better position in IT industry or to improve
their careers.
History of Python
Van Rossum picked the name Python for the new language from a
TV show, Monty Python's Flying Circus.
compile
output source code execut
Hello.java
byte code
Hello.c
lass
• Easy to read: Python source-code is clearly defined and visible to the eyes.
Dictionary-
Constructing a dictionary.
Accessing object from a dictionary.
Nesting Dictionaries.
Basic Dictionary Methods.
Basic Syntax
o d={} empty dictionary will be generated and assign keys and values to
it, like d[‘animal’] = ‘Dog’
o d = {'K1':'V1', 'K2’:’V2'}
o d['K1'] outputs 'V1‘
Tuples-
Sets-
A set contains unique and unordered elements and we can construct them
by using a set() function.
Convert a list into Set-
l=[1,2,3,4,1,1,2,3,6,7]
k = set(l)
k becomes {1,2,3,4,6,7}
Basic Syntax-
x=set()
x.add(1)
x = {1}
x.add(1)
This would make no change in x now
File Handling in Python-
Python too supports file handling and allows users to handle files i.e., to read and
write files, along with many other file handling options, to operate on files. The
concept of file handling has stretched over various other languages, but the
implementation is either complicated or lengthy, but alike other concepts of
Python, this concept here is also easy and short. Python treats file differently as
text or binary and this is important. Each line of code includes a sequence of
characters and they form text file. Each line of a file is terminated with a special
character, called the EOL or End of Line characters like comma {,} or newline
character. It ends the current line and tells the interpreter a new one has begun.
Let’s start with Reading and Writing files.
We use open () function in Python to open a file in read or write mode. As explained
above, open ( ) will return a file object. To return a file object we use open ()
function along with two arguments, that accepts file name and the mode, whether
to read or write. So, the syntax being: open(filename, mode). There are three kinds
of mode, that Python provides and how files can be opened:
• “ r “, for reading.
• “ w “, for writing.
• “ a “, for appending.
• “ r+ “, for both reading and writing
It read the words from 101.txt file and print the all words which are present in
the file and also tell that word occurring howmany times.
Use of Numpy-
NumPy is a Python package. It stands for 'Numerical Python'. It is a library
consisting of multidimensional array objects and a collection of routines for
processing of array.
First of all we import numpy package then using this we take input in
numpy function as a list then we create a matrix
There is many more function can be perform by using this like that take sin value
of the given value ,print a zero matrix etc. we also take any image in the form of
array.
Use of Matplotlib-
Matplotlib is a library for making 2D plots of arrays in Python. Although it has its
origins in emulating the MATLAB graphics commands, it is independent of
MATLAB, and can be used in a Pythonic, object oriented way. Although Matplotlib
is written primarily in pure Python, it makes heavy use of NumPy and other
extension code to provide good performance even for large arrays.
Matplotlib is designed with the philosophy that you should be able to create
simple plots with just a few commands, or just one! If you want to see a
histogram of your data, you shouldn’t need to instantiate objects, call methods,
set properties, and so on; it should just work.
• Fast and efficient DataFrame object with default and customized indexing.
• Tools for loading data into in-memory data objects from different
file formats.
Series
DataFrame
Panel
These data structures are built on top of Numpy array, which means they are
fast.
Use of OpenCV-
OpenCV was started at Intel in 1999 by Gary Bradsky and the first release came
out in 2000. Vadim Pisarevsky joined Gary Bradsky to manage Intel’s Russian
software OpenCV team. In 2005, OpenCV was used on Stanley, the vehicle who
won 2005 DARPA Grand Challenge. Later its active development continued under
the support of Willow Garage, with Gary Bradsky and Vadim Pisarevsky leading
the project. Right now, OpenCV supports a lot of algorithms related to Computer
Vision and Machine Learning and it is expanding day-by-day.
Second argument is a flag which specifies the way image should be read.
Result-
The training program having three destination was a lot more useful than staying
at one place throughout the whole 4 weeks. In my opinion. I have gained lots of
knowledge and experience needed to be successful in great engineering
challenge as in my opinion, Engineering is after all a Challenge ,and not a job .