Main moocs
Main moocs
on
First and foremost, we wish to record our sincere gratitude to Prof. Mr.
Ravindra Koranga for his constant support and encouragement in preparation
of this report and for making available library and laboratory facilities needed
to prepare this report.
Last but not the least, we wish to thank our parents for financing our studies in
this college as well as for constantly encouraging us to learn engineering. Their
personal sacrifice in providing this opportunity to learn engineering is
gratefully acknowledged.
Table of Contents
Acknowledgments
CHAPTER 1.
Introduction
1.1Python
1.2Scripting Language
1.4History of python
2.2Installing Python
3.3Python Operator
3.3.2Comparison Operator
3.3.3Logical Operator
4.1Tuple
4.2List
5.1Loops
5.2Conditional Statement
5.3Function
Pytho
n
Scripting Language
History
Python was conceived in the late 1980s, and its implementation was started in
December 1989 by Guido van Rossum at CWI in the Netherlands as a successor
to the ABC language (itself inspired by SETL) capable of exception handling and
interfacing with the Amoeba operating system. Van Rossum is Python's
principal author, and his continuing central role in deciding the direction of
Python is reflected in the title given to him by the Python community,
benevolent dictator for life (BDFL).
Chapter-: 2
Downloading
Python
If you don’t already have a copy of Python installed on your computer, you will
need to open up your Internet browser and go to the Python download
page(http://www.python.org/download/).
Now that you are on the download page, select which of the software builds
you would like to download. For the purposes of this article we will use the
most up to date version available (Python 3.4.1).
Once you have clicked on that, you will be taken to a page with a description of
all the new updates and features of 3.4.1, however, you can always read that
while the download is in process. Scroll to the bottom of the page till you find
the “Download” section and click on the link that says “download page.”
Now you will scroll all the way to the bottom of the page and find the “Windows x86 MSI
installer.” If you want to download the 86-64 bit MSI, feel free to do so. We believe that
even if you have a 64-bit operating system installed on your computer, the 86-bit MSI is
preferable. We say this because it will still run well and sometimes, with the 64-bit
architectures, some of the compiled binaries and Python libraries don’t work well.
Installing Python
Once you have downloaded the Python MSI, simply navigate to the download location on
your computer, double clicking the file and pressing Run when the dialog box pops up.
If you are the only person who uses your computer, simply leave the “Install for all users”
option selected. If you have multiple accounts on your PC and don’t want to install it across
all accounts, select the “Install just for me” option then press “Next.”
f you want to change the install location, feel free to do so; however, it is best to leave it as
is and simply select next, Otherwise...
Scroll down in the window and find the “Add Python.exe to Path” and click on the small red
“x.” Choose the “Will be installed on local hard drive” option then press “Next.”
Setup the Path Variable
Begin by opening the start menu and typing in “environment” and select the option called
“Edit the system environment variables.”
Once you have the “Environment Variables” window open, direct your focus to the bottom
half. You will notice that it controls all the “System Variables” rather than just this
associated with your user. Click on “New…” to create a new variable for Python.
Simply enter a name for your Path and the code shown below. For the purposes of this
example we have installed Python 2.7.3, so we will call the path: “Pythonpath.”
Data
Type
Python has many native datatypes. Here are the important ones:
Numbers can be integers (1 and 2), floats (1.1 and 1.2), fractions (1/2 and
2/3), or even complex numbers.
Variables are nothing but reserved memory locations to store values. This means that
when you create a variable you reserve some space in memory.
Based on the data type of a variable, the interpreter allocates memory and decides what
can be stored in the reserved memory. Therefore, by assigning different data types to
variables, you can store integers, decimals or characters in these variables.
Ex:
String
In programming terms, we usually call text a string. When youthink of a string as a collection
of letters, the term makes sense.
All the letters, numbers, and symbols in this book could be a string.
For that matter, your name could be a string, and so could your
address.
Creating Strings
In Python, we create a string by putting quotes around text. For example, we could take our
otherwise useless
• len("hello") 5 # size
Python Operator
Arithmetic Operator
x+y
+ Add two operands or unary plus
+2
x-y
- Subtract right operand from the left or unary minus
-2
x**y (x to the
** Exponent - left operand raised to the power of right
power y)
Chapter-: 4
Tuple
s
A tuple is a sequence of immutable Python objects. Tuples are sequences, just
like lists. The differences between tuples and lists are, the tuples cannot be
changed unlike lists and tuples use parentheses, whereas lists use square
brackets.
tup2 = (1, 2, 3, 4, 5 );
To access values in tuple, use the square brackets for slicing along with the
index or indices to obtain value available at that index. For example −
tup2 = (1, 2, 3, 4, 5, 6, 7 );
tup1[0]: physics
tup2[1:5]: [2, 3, 4, 5]
List
The list is a most versatile datatype available in Python which can be written as
a list of comma-separated values (items) between square brackets. Important
thing about a list is that items in a list need not be of the same type.
list2 = [1, 2, 3, 4, 5 ];
Similar to string indices, list indices start at 0, and lists can be sliced,
concatenated and so on.
list2 = [1, 2, 3, 4, 5, 6, 7 ];
Output:list1[0]: physics
list2[1:5]: [2, 3, 4, 5]
print list[2]
list[2] = 2001;
print list[2]
del list1[2];
print list1
nested loops You can use one or more loop inside any another
while, for or do..while loop.
Conditional Statements:
Decision making is anticipation of conditions occurring while execution of the
program and specifying actions taken according to the conditions.
Example:
If Statement:
>>>state = “Texas”
print “TX
TX
If...Else Statement:
>>>if state == “Texas”
print “TX”
else:
If...Else...If Statement:
>>>if name == “Paige”
else:
print “Imposter!”
Function
Function blocks begin with the keyword def followed by the function name
and parentheses ( ( ) ).
The code block within every function starts with a colon (:) and is indented.
Syntex:
Dysfunction name( parameters ):
"function_docstring"
function_suite
return [expression]
Chapter-: 6
Scope of Python
Science
- Bioinformatics
System Administration
-Unix
-Web logic
-Web sphere
-CGI
Testing scripts
Internet Scripting
Component Integration
Database Programming
seem to be these:
Python is object-oriented
o Structure supports such concepts as polymorphism, operation
overloading, and multiple inheritance.
Indentation
o Indentation is one of the greatest future in Python.
It's free (open source)
o Downloading and installing Python is free and easy
o Source code is easily accessible
It's powerful
o Dynamic typing
o Built-in types and tools
o Library utilities
o Third party utilities (e.g. Numeric, NumPy, SciPy)
o Automatic memory management
It's portable
o Python runs virtually every major platform used today
o As long as you have a compatible Python interpreter installed,
Python programs will run in exactly the same manner, irrespective
of platform.
Conclusion
I believe the trial has shown conclusively that it is both possible and
desirable to use Python as the principal teaching language: