What is Python?
Python is a popular programming language. It was created by Guido
van Rossum, and released in 1991.
It is used for:
- web development (server-side),
- software development,
- mathematics,
- system scripting.
What can Python do?
-
Python can be used on a server to create web applications.
-
Python can be used alongside software to create workflows.
-
Python can connect to database systems. It can also read and
modify files.
-
Python can be used to handle big data and perform complex
mathematics.
-
Python can be used for rapid prototyping, or for
production-ready software development.
Why Python?
-
Python works on different platforms (Windows, Mac, Linux,
Raspberry Pi, etc).
-
Python has a simple syntax similar to the English language.
-
Python has syntax that allows developers to write programs with
fewer lines than some other programming languages.
-
Python runs on an interpreter system, meaning that code can be
executed as soon as it is written. This means that prototyping
can be very quick.
-
Python can be treated in a procedural way, an object-oriented
way or a functional way.
Good to know
-
The most recent major version of Python is Python 3, which we
shall be using in this tutorial. However, Python 2, although not
being updated with anything other than security updates, is
still quite popular.
-
In this tutorial Python will be written in a text editor. It is
possible to write Python in an Integrated Development
Environment, such as Thonny, Pycharm, Netbeans or Eclipse which
are particularly useful when managing larger collections of
Python files.
Python Syntax compared to other programming languages
-
Python was designed for readability, and has some similarities
to the English language with influence from mathematics.
-
Python uses new lines to complete a command, as opposed to other
programming languages which often use semicolons or parentheses.
-
Python relies on indentation, using whitespace, to define scope;
such as the scope of loops, functions and classes. Other
programming languages often use curly-brackets for this purpose.
Python Install
Many PCs and Macs will have python already installed.
To check if you have python installed on a Windows PC, search in
the start bar for Python or run the following on the Command Line
(cmd.exe):
If you find that you do not have python installed on your
computer, then you can download it for free from the following
website:
https://www.python.org/
Python Quickstart
Python is an interpreted programming language, this means that as
a developer you write Python (.py) files in a text editor and then
put those files into the python interpreter to be executed.
The way to run a python file is like this on the command line:
Execute Python Syntax
As we learned in the previous page, Python syntax can be executed
by writing directly in the Command Line:
>>> print("Hello, World!")
Hello, World!
Variables Variables are containers for storing data values.
x = 5
y = "John"
print(x)
print(y)
Specify a Variable Type There may be times when you want to
specify a type on to a variable. This can be done with casting.
Python is an object-orientated language, and as such it uses
classes to define data types, including its primitive types.
-
int() - constructs an integer number from an integer literal, a
float literal (by removing all decimals), or a string literal
(providing the string represents a whole number)
-
float() - constructs a float number from an integer literal, a
float literal or a string literal (providing the string
represents a float or an integer)
-
str() - constructs a string from a wide variety of data types,
including strings, integer literals and float literals
Strings -- Strings in python are surrounded by either single
quotation marks, or double quotation marks.
'hello' is the same as "hello".
Boolean Values -- In programming you often need to know if an
expression is True or False.
You can evaluate any expression in Python, and get one of two
answers, True or False.
Python Operators -- Operators are used to perform operations on
variables and values.
>mylist = ["apple", "banana", "cherry"]
List
Lists are used to store multiple items in a single variable.
Lists are one of 4 built-in data types in Python used to store
collections of data, the other 3 are Tuple, Set, and Dictionary,
all with different qualities and usage.
>thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
Dictionary - - Dictionaries are used to store data values in
key:value pairs.
A dictionary is a collection which is ordered*, changeable and
does not allow duplicates.
Python Loops -- Python has two primitive loop commands:
while loops
for loops
The while Loop
With the while loop we can execute a set of statements as long as
a condition is true.
Python For Loops -- A for loop is used for iterating over a
sequence (that is either a list, a tuple, a dictionary, a set, or
a string).
This is less like the for keyword in other programming languages,
and works more like an iterator method as found in other
object-orientated programming languages.
With the for loop we can execute a set of statements, once for
each item in a list, tuple, set etc.
A function is a block of code which only runs when it is called.
You can pass data, known as parameters, into a function.
A function can return data as a result.
Creating a Function
In Python a function is defined using the def keyword:
A lambda function is a small anonymous function.
A lambda function can take any number of arguments, but can only
have one expression.
Syntax
lambda arguments : expression
What is an Array?
An array is a special variable, which can hold more than one value
at a time.
If you have a list of items (a list of car names, for example),
storing the cars in single variables could look like this:
>car1 = "Ford"
car2 = "Volvo"
car3 = "BMW"
However, what if you want to loop through the cars and find a
specific one? And what if you had not 3 cars, but 300?
The solution is an array!
An array can hold many values under a single name, and you can
access the values by referring to an index number.
Python Classes/Objects
Python is an object oriented programming language.
Almost everything in Python is an object, with its properties and
methods.
A Class is like an object constructor, or a "blueprint" for
creating objects.
Create a Class
To create a class, use the keyword class:
Python Inheritance
Inheritance allows us to define a class that inherits all the
methods and properties from another class.
Parent class is the class being inherited from, also called base
class.
Child class is the class that inherits from another class, also
called derived class.
Python Iterators -- An iterator is an object that contains a
countable number of values.
An iterator is an object that can be iterated upon, meaning that
you can traverse through all the values.
Technically, in Python, an iterator is an object which implements
the iterator protocol, which consist of the methods __iter__() and
__next__().
A variable is only available from inside the region it is created.
This is called scope.
Local Scope
A variable created inside a function belongs to the local scope of
that function, and can only be used inside that function.