In this part of the Python programming tutorial, we will introduce all keywords in Python language.
The
The next example shows the
The
Next we will see, how we can combine the statements using the
The
The
The keyword
The keyword
When we work with and/or keywords in Python programming language, short circuit evaluation takes place. Short circuit evaluation means that the second argument is only evaluated if the first argument does not suffice to determine the value of the expression: when the first argument of and evaluates to false, the overall value must be false; and when the first argument of or evaluates to true, the overall value must be true. (wikipedia)
A typical example follows.
The
We use the
The
The
If we want to access variables defined outside functions, we use the
In the next example, we show how to create a user defined exception using the
The
The
The
The
Finally, we mention the
List of keywords
The following is a list of keywords for the Python programming language.and del from not whilePython is a dynamic language. It changes during time. The list of keywords may change in the future.
as elif global or with
assert else if pass yield
break except import print
class exec in raise
continue finally is return
def for lambda try
#!/usr/bin/pythonThis script prints the version of Python and it's actual keyword list.
# keywords.py
import sys
import keyword
print "Python version: ", sys.version_info
print "Python keywords: ", keyword.kwlist
print keyword
The print keyword is use to print numbers and characters to the console.#!/usr/bin/pythonThe print keyword without any text will line feed.
# tutorial.py
print "*" * 24
print "*" * 24
print "*" * 24
print "\tZetCode"
print "*" * 24
print "*" * 24
print "*" * 24
$ ./tutorial.py
************************
************************
************************
ZetCode
************************
************************
************************
Control flow
Thewhile
keyword is a basic keyword for controlling the flow of the program. The statements inside the while loop are executed, until the expression evaluates to False. #!/usr/bin/pythonIn our script we want to calculate the sum of all values in the numbers list. We utilize the while loop. We determine the length of the list. The while loop is executed over and over again, until the i is equal to zero. In the body of the loop, we decrement the counter and calculate the sum of values.
# sum.py
numbers = [22, 34, 12, 32, 4]
sum = 0
i = len(numbers)
while (i != 0):
i -= 1
sum = sum + numbers[i]
print "The sum is: ", sum
The
break
keyword is used to interrupt the cycle, if needed. #!/usr/bin/pythonIn our example, we print random integer numbers. If the number equals to 22, the cycle is interrupted with the break keyword.
# testbreak.py
import random
while (True):
val = random.randint(1, 30)
print val,
if (val == 22):
break
$ ./testbreak.py
14 14 30 16 16 20 23 15 17 22
The next example shows the
continue
keyword. It is used to interrupt the current cycle, without jumping out of the whole cycle. New cycle will begin. #!/usr/bin/pythonIn the example we print all numbers smaller than 1000, that cannot be divided by number 2.
# testcontinue.py
import random
num = 0
while (num < 1000):
num = num + 1
if (num % 2) == 0:
continue
print num,
The
if
keyword is the commonest used control flow keyword. The if keyword is used to determine, which statements are going to be executed. #!/usr/bin/pythonThe if keyword tests if the the person is older than 18. If the condition is met, the driving licence is issued. Otherwise, it is not. The
# licence.py
age = 17
if age > 18:
print "Driving licence issued"
else:
print "Driving licence not permitted"
else
keyword is optional. The statement after the else keyword is executed, unless the condition is True. Next we will see, how we can combine the statements using the
elif
keyword. Stands for else if. #!/usr/bin/pythonIf the first test evaluates to False, we continue with the next one. If none of the tests is True, the else statement is executed.
# hello.py
name = "Luke"
if name == "Jack":
print "Hello Jack!"
elif name == "John":
print "Hello John!"
elif name == "Luke":
print "Hello Luke!"
else:
print "Hello there!"
$ ./hello.pyOutput.
Hello Luke!
The
for
keyword is used to iterate over items of a collection in order that they appear in the container. #!/usr/bin/pythonIn the example, we have a lyrics variable having a strophe of a song. We iterate over the text and print the text character by character. The comma in the print statement prevents from printing each character on a new line.
# lyrics.py
lyrics = """\
Are you really here or am I dreaming
I can't tell dreams from truth
for it's been so long since I have seen you
I can hardly remember your face anymore
"""
for i in lyrics:
print i,
$ ./lyrics.pyThis is the output of the script.
A r e y o u r e a l l y h e r e o r a m I d r e a m i n g
I c a n ' t t e l l d r e a m s f r o m t r u t h
f o r i t ' s b e e n s o l o n g s i n c e I h a v e s e e n y o u
I c a n h a r d l y r e m e m b e r y o u r f a c e a n y m o r e
Boolean expressions
First we will introduce keywords, that work with boolean values and expressions.is
, or
, and
and not
. #!/usr/bin/pythonThe == operator tests for equality The
# objects.py
print None == None
print None is None
print True is True
print [] == []
print [] is []
print "Python" is "Python"
is
keyword tests for object identity. Whether we are talking about the same object. Note, that multiple variables may refer to the same object. $ ./objects.pyThe output might be surprising for you. In Python language, there is only one None and one True object. That's why True is equal and also identical to True. There is only one truth out there, anyway. The empty list [] is equal to another empty list []. But they are not identical. Python has put them into two different memory locations. They are two distinct objects. Hence the is keyword returns False. On the other hand, "Python" is "Python" returns True. This is because of optimalisation. If two string literals are equal, they have been put to same memory location. A string is an immutable entity. No harm can be done.
True
True
True
True
False
True
The
not
keyword negates a boolean value. #!/usr/bin/pythonIn our examle we test, whether the grade value is from the list of possible grades.
# grades.py
grades = ["A", "B", "C", "D", "E", "F"]
grade = "L"
if grade not in grades:
print "unknown grade"
$ ./grades.py
unknown grade
The keyword
and
is used, if all conditions in a boolean expression must be met. #!/usr/bin/pythonIn our example, we test, if two conditions are met. The "young male" is printed to the console, if variable age is less than 55 and variable sex is equal to M.
# youngmale.py
sex = "M"
age = 26
if age < 55 and sex == "M":
print "a young male"
$ ./youngmale.py
a young male
The keyword
or
is used if at least one condition must be met. #!/usr/bin/pythonIf at least one of the expressions is true, the print statement is executed.
# name.py
name = "Jack"
if ( name == "Robert" or name == "Frank" or name == "Jack"
or name == "George" or name == "Luke"):
print "This is a male"
When we work with and/or keywords in Python programming language, short circuit evaluation takes place. Short circuit evaluation means that the second argument is only evaluated if the first argument does not suffice to determine the value of the expression: when the first argument of and evaluates to false, the overall value must be false; and when the first argument of or evaluates to true, the overall value must be true. (wikipedia)
A typical example follows.
#!/usr/bin/pythonThe first part of the expression evaluates to False. The second part of the expression is not evaluated. Otherwise, we would get a ZeroDivisionError.
x = 10
y = 0
if (y != 0 and x/y < 100):
print "a small value"
Modules
The following keywords are used with modules. Modules are files, in which we organize our Python code.The
import
keyword is used to import other modules into a Python script. #!/usr/bin/pythonWe use the import keyword to import the math module into the namespace of our script. We print the PI value.
# pi.py
import math
print math.pi
We use the
as
keyword, if we want to give a module a different alias. #!/usr/bin/pythonIn this case, we import the random module. We will print ten random integer numbers. We give the random module a different alias, namely rnd. In the script we reference the module with the new alias. Notice, that we cannot name the script random.py or rnd.py. We would get errors.
# rand.py
import random as rnd
for i in range(10):
print rnd.randint(1, 10),
$ ./rand.py
1 2 5 10 10 8 2 9 7 2
The
from
keyword is used for importing a specific variable, class or a function from a module. #!/usr/bin/pythonFrom the sys module, we import the version variable. If we want to print it, we do not need to use the module name. The version variable was imported directly to our namespace and we can reference it directly.
# testfrom.py
from sys import version
print version
$ ./testfrom.py
2.5.1 (r251:54863, Mar 7 2008, 03:41:45)
[GCC 4.1.2 (Ubuntu 4.1.2-0ubuntu4)]
Functions
Here we will describe keywords associated with functions. Thedef
keyword is used to create a new user defined function. Functions are objects in which we organize our code. #!/usr/bin/pythonThe example demonstrates a simple new function. The function will calculate the square of a number. The
# function.py
def root(x):
return x * x
a = root(2)
b = root(15)
print a, b
return
key is closely connected with a function definition. The keyword exits the function and returns a value. The value is than assigned to the a, b variables. The
lambda
keyword creates a new anonymous function. An anonymous function is a function, which is not bound to a specific name. It is also called an inline function. !/usr/bin/pythonAs you can see in the previous example, we do not create a new function with a def keyword. Instead of that we use an inline function on the fly.
# lambda.py
for i in (1, 2, 3, 4, 5):
a = lambda x: x * x
print a(i),
$ ./lambda.py
1 4 9 16 25
If we want to access variables defined outside functions, we use the
global
keyword. #!/usr/bin/pythonNormally, assigning to x variable inside a function, we create a new local variable, which is valid only in that function. But if we use the global keyword, we change a variable ouside the function definition.
# testglobal.py
x = 15
def function():
global x
x = 45
function()
print x
$ ./testglobal.py
45
Exceptions
Next we will work with keywords, that are used with exception handling.$ cat filmsThis is a file, containing some film titles. In the code example, we are going to read it.
Fargo
Aguirre, der Zorn Gottes
Capote
Grizzly man
Notes on a scandal
#!/usr/bin/pythonWe try to read a films file. If no exception occurs, we print the contents of the file to the console. There might be an exception. For example, if we provided an incorrect file name. In such a case a
# files.py
f = None
try:
f = open('films', 'r')
for i in f:
print i,
except IOError:
print "Error reading file"
finally:
if f:
f.close()
IOError
exception is raised. The except
keyword catches the exception and executes its code. The finally
keyword is always executed in the end. We use it to clean up our resources. In the next example, we show how to create a user defined exception using the
raise
keyword. #!/usr/bin/pythonIn the example, we expect only yes/no values. For other possibilities, we raise an exception.
# userexception.py
class YesNoException(Exception):
def __init__(self):
print 'Invalid value'
answer = 'y'
if (answer != 'yes' and answer != 'no'):
raise YesNoException
else:
print 'Correct value'
$ ./userexception.py
Invalid value
Traceback (most recent call last):
File "./userexception.py", line 13, in <module>
raise YesNoException
__main__.YesNoException
Other keywords
Thedel
keyword deletes objects. #!/usr/bin/pythonIn our example, we have a list of four integer numbers. We delete the first numbers from the list. The outcome is printed to the console.
# delete.py
a = [1, 2, 3, 4]
print a
del a[:2]
print a
$ ./delete.pyOutput.
[1, 2, 3, 4]
[3, 4]
The
pass
keyword does nothing. It is a very handy keyword in some situations. def function():We have a function. This function is not implemented yet. It will be later. The body of the function must not be empty. So we can use a pass keyword here, instead of printing something like "function not implemented yet" or similar.
pass
The
assert
keyword is used for debugging purposes. We can use it for testing conditions, that are obvious to us. For example, we have a program that calculates salaries. We know that the salary cannot be less than zero. So we might put such an assertion to the code. If the assertion fails, the interpreter will complain. #!/usr/bin/pythonDuring the execution of the program a mistake was done. The salary becomes a negative number.
# salary.py
salary = 3500
salary -= 3560 # a mistake was done
assert salary > 0
$ ./salary.pyThe execution of the script will fail with an AssertionError.
Traceback (most recent call last):
File "./salary.py", line 9, in <module>
assert salary > 0
AssertionError
The
class
keyword is the most important keyword in object oriented programming. It is used to create new user defined objects. #!/usr/bin/pythonIn the code example, we create a new Square class. Then we instantiate the class and create an object. We compute the area of the square object.
# square.py
class Square:
def __init__(self, x):
self.a = x
def area(self):
print self.a * self.a
sq = Square(12)
sq.area()
The
exec
keyword executes Python code dynamically. #!/usr/bin/pythonWe print five numbers from a list using a for loop. All within the exec keyword.
# execution.py
exec("for i in [1, 2, 3, 4, 5]: print i,")
$ ./execution.py
1 2 3 4 5
Finally, we mention the
in
keyword. #!/usr/bin/pythonIn this example, the in keyword tests if the number four is in the tuple. The second usage is traversing a tuple in a for loop. The built-in function
# inkeyword.py
print 4 in (2, 3, 5, 6)
for i in range(25):
print i,
range()
returns integers 0 .. 24. $ ./inkeyword.pyThe
False
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
yield
keyword is used with generators. #!/usr/bin/pythonThe yield keyword exits the generator and returns a value.
# yieldkeyword.py
def gen():
x = 11
yield x
it = gen()
print it.next()
$ ./yieldkeyword.pyIn this part of the Python tutorial, we have covered Python keywords.
11
0 comments:
Post a Comment